aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/VideoType.cs
blob: 172796301dd31f2885441e5bf474e7652d7e9fa7 (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
27
28
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
    }
}