IChannelMediaItem.cs 464 B

123456789101112131415161718
  1. using MediaBrowser.Model.Channels;
  2. using MediaBrowser.Model.Entities;
  3. using System.Collections.Generic;
  4. namespace MediaBrowser.Controller.Channels
  5. {
  6. public interface IChannelMediaItem : IChannelItem
  7. {
  8. long? RunTimeTicks { get; set; }
  9. string MediaType { get; }
  10. ChannelMediaContentType ContentType { get; set; }
  11. ExtraType? ExtraType { get; set; }
  12. List<ChannelMediaInfo> ChannelMediaSources { get; set; }
  13. }
  14. }