2014-09-28 08:27:26 -07:00
|
|
|
|
using MediaBrowser.Model.Channels;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System.Collections.Generic;
|
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
|
|
|
|
|
2015-09-19 19:06:56 -07:00
|
|
|
|
ExtraType? ExtraType { get; set; }
|
2014-09-28 08:27:26 -07:00
|
|
|
|
|
2014-05-18 12:58:42 -07:00
|
|
|
|
List<ChannelMediaInfo> ChannelMediaSources { get; set; }
|
2014-05-11 16:02:28 -07:00
|
|
|
|
}
|
|
|
|
|
}
|