jellyfin/MediaBrowser.Model/Entities/IsoType.cs

19 lines
302 B
C#
Raw Normal View History

2018-12-27 16:27:57 -07:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
2020-02-03 17:49:27 -07:00
/// Enum IsoType.
2018-12-27 16:27:57 -07:00
/// </summary>
public enum IsoType
{
/// <summary>
2020-02-03 17:49:27 -07:00
/// The DVD.
2018-12-27 16:27:57 -07:00
/// </summary>
Dvd,
2020-02-03 17:49:27 -07:00
2018-12-27 16:27:57 -07:00
/// <summary>
2020-02-03 17:49:27 -07:00
/// The blu ray.
2018-12-27 16:27:57 -07:00
/// </summary>
BluRay
}
}