aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/IsoType.cs
blob: 1aa29f31d4abc9491b541b4e0546ee16e7dd4966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum IsoType.
    /// </summary>
    public enum IsoType
    {
        /// <summary>
        /// The DVD.
        /// </summary>
        Dvd,

        /// <summary>
        /// The blu ray.
        /// </summary>
        BluRay
    }
}