You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Controller/Providers/VideoContentType.cs

19 lines
339 B

6 years ago
namespace MediaBrowser.Controller.Providers
{
/// <summary>
/// Enum VideoContentType.
6 years ago
/// </summary>
public enum VideoContentType
{
/// <summary>
/// The episode.
6 years ago
/// </summary>
Episode = 0,
/// <summary>
/// The movie.
6 years ago
/// </summary>
Movie = 1
}
}