aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/IsoType.cs
blob: 8e4f0d63a4e3fc019ba9835c3ec87a0a93f38a52 (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
    }
}