| 1234567891011121314151617 | using System.Collections.Generic;using MediaBrowser.Model.Channels;namespace MediaBrowser.Controller.Channels{    public interface IChannelMediaItem : IChannelItem    {        bool IsInfiniteStream { get; set; }        long? RunTimeTicks { get; set; }        string MediaType { get; }        ChannelMediaContentType ContentType { get; set; }        List<ChannelMediaInfo> ChannelMediaSources { get; set; }    }}
 |