aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/VideoType.cs
blob: 05c2fa32c629990b1a89cdba6a188656229af68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum VideoType
    /// </summary>
    public enum VideoType
    {
        /// <summary>
        /// The video file
        /// </summary>
        VideoFile,
        /// <summary>
        /// The iso
        /// </summary>
        Iso,
        /// <summary>
        /// The DVD
        /// </summary>
        Dvd,
        /// <summary>
        /// The blu ray
        /// </summary>
        BluRay
    }
}