IChannelMediaItem.cs 319 B

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