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

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