jellyfin/MediaBrowser.Model/Entities/IsoType.cs

19 lines
302 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 IsoType.
2018-12-28 00:27:57 +01:00
/// </summary>
public enum IsoType
{
/// <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
}
}