jellyfin/MediaBrowser.Model/Entities/VideoType.cs
2018-12-27 18:27:57 -05:00

27 lines
475 B
C#

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