2014-09-28 15:27:26 +00:00
|
|
|
|
using MediaBrowser.Model.Channels;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System.Collections.Generic;
|
2014-05-18 19:58:42 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
2014-05-11 23:02:28 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IChannelMediaItem : IChannelItem
|
|
|
|
|
{
|
2014-06-02 19:32:41 +00:00
|
|
|
|
long? RunTimeTicks { get; set; }
|
|
|
|
|
string MediaType { get; }
|
|
|
|
|
|
2014-05-11 23:02:28 +00:00
|
|
|
|
ChannelMediaContentType ContentType { get; set; }
|
2014-05-18 19:58:42 +00:00
|
|
|
|
|
2014-09-28 15:27:26 +00:00
|
|
|
|
ExtraType ExtraType { get; set; }
|
|
|
|
|
|
2014-05-18 19:58:42 +00:00
|
|
|
|
List<ChannelMediaInfo> ChannelMediaSources { get; set; }
|
2014-05-11 23:02:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|