ChannelMediaContentType.cs 223 B

1234567891011121314151617
  1. namespace MediaBrowser.Controller.Channels
  2. {
  3. public enum ChannelMediaContentType
  4. {
  5. Clip = 0,
  6. Podcast = 1,
  7. Trailer = 2,
  8. Movie = 3,
  9. Episode = 4,
  10. Song = 5
  11. }
  12. }