2
0

VideoContentType.cs 339 B

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