IChannelMediaItem.cs 385 B

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