jellyfin/MediaBrowser.Model/Entities/VideoType.cs

29 lines
479 B
C#
Raw Normal View History

2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Enum VideoType.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum VideoType
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// The video file.
2018-12-28 00:27:57 +01:00
/// </summary>
VideoFile,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The iso.
2018-12-28 00:27:57 +01:00
/// </summary>
Iso,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The DVD.
2018-12-28 00:27:57 +01:00
/// </summary>
Dvd,
2020-02-04 01:49:27 +01:00
2018-12-28 00:27:57 +01:00
/// <summary>
2020-02-04 01:49:27 +01:00
/// The blu ray.
2018-12-28 00:27:57 +01:00
/// </summary>
BluRay
}
}