ChannelItemLookupInfo.cs 300 B

1234567891011
  1. using MediaBrowser.Model.Channels;
  2. using MediaBrowser.Model.Entities;
  3. namespace MediaBrowser.Controller.Providers
  4. {
  5. public class ChannelItemLookupInfo : ItemLookupInfo
  6. {
  7. public ChannelMediaContentType ContentType { get; set; }
  8. public ExtraType ExtraType { get; set; }
  9. }
  10. }