IChannelMediaItem.cs 354 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using MediaBrowser.Model.Channels;
  3. namespace MediaBrowser.Controller.Channels
  4. {
  5. public interface IChannelMediaItem : IChannelItem
  6. {
  7. bool IsInfiniteStream { get; set; }
  8. ChannelMediaContentType ContentType { get; set; }
  9. List<ChannelMediaInfo> ChannelMediaSources { get; set; }
  10. }
  11. }