2014-05-18 12:58:42 -07:00
|
|
|
|
using System.Collections.Generic;
|
2014-05-19 12:51:56 -07:00
|
|
|
|
using MediaBrowser.Model.Channels;
|
2014-05-18 12:58:42 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
2014-05-11 16:02:28 -07:00
|
|
|
|
{
|
|
|
|
|
public interface IChannelMediaItem : IChannelItem
|
|
|
|
|
{
|
2014-06-02 12:32:41 -07:00
|
|
|
|
long? RunTimeTicks { get; set; }
|
|
|
|
|
string MediaType { get; }
|
|
|
|
|
|
2014-05-11 16:02:28 -07:00
|
|
|
|
ChannelMediaContentType ContentType { get; set; }
|
2014-05-18 12:58:42 -07:00
|
|
|
|
|
|
|
|
|
List<ChannelMediaInfo> ChannelMediaSources { get; set; }
|
2014-05-11 16:02:28 -07:00
|
|
|
|
}
|
|
|
|
|
}
|