aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/VideoContentType.cs
blob: 903c77612ec05f7e57fda9af1cd889ca59a4849c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace MediaBrowser.Controller.Providers
{
    /// <summary>
    /// Enum VideoContentType
    /// </summary>
    public enum VideoContentType
    {
        /// <summary>
        /// The episode
        /// </summary>
        Episode = 0,

        /// <summary>
        /// The movie
        /// </summary>
        Movie = 1
    }
}