Files

23 lines
485 B
C#

// <copyright file="VideoContentType.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace MediaBrowser.Controller.Providers
{
/// <summary>
/// Enum VideoContentType.
/// </summary>
public enum VideoContentType
{
/// <summary>
/// The episode.
/// </summary>
Episode = 0,
/// <summary>
/// The movie.
/// </summary>
Movie = 1
}
}