ChannelItemType.cs 130 B

123456789
  1. namespace MediaBrowser.Controller.Channels
  2. {
  3. public enum ChannelItemType
  4. {
  5. Media = 0,
  6. Folder = 1
  7. }
  8. }