2014-05-18 19:58:42 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-05-19 19:51:56 +00:00
|
|
|
|
using MediaBrowser.Model.Channels;
|
2014-05-18 19:58:42 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
2014-05-11 23:02:28 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IChannelMediaItem : IChannelItem
|
|
|
|
|
{
|
|
|
|
|
bool IsInfiniteStream { get; set; }
|
|
|
|
|
|
|
|
|
|
ChannelMediaContentType ContentType { get; set; }
|
2014-05-18 19:58:42 +00:00
|
|
|
|
|
|
|
|
|
List<ChannelMediaInfo> ChannelMediaSources { get; set; }
|
2014-05-11 23:02:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|