You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Entities/VideoType.cs

29 lines
479 B

6 years ago
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum VideoType.
6 years ago
/// </summary>
public enum VideoType
{
/// <summary>
/// The video file.
6 years ago
/// </summary>
VideoFile,
6 years ago
/// <summary>
/// The iso.
6 years ago
/// </summary>
Iso,
6 years ago
/// <summary>
/// The DVD.
6 years ago
/// </summary>
Dvd,
6 years ago
/// <summary>
/// The blu ray.
6 years ago
/// </summary>
BluRay
}
}