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