VideoContentType.cs 340 B

12345678910111213141516171819
  1. 
  2. namespace MediaBrowser.Controller.Providers
  3. {
  4. /// <summary>
  5. /// Enum VideoContentType
  6. /// </summary>
  7. public enum VideoContentType
  8. {
  9. /// <summary>
  10. /// The episode
  11. /// </summary>
  12. Episode = 0,
  13. /// <summary>
  14. /// The movie
  15. /// </summary>
  16. Movie = 1
  17. }
  18. }