jellyfin/MediaBrowser.Controller/Channels/IChannelMediaItem.cs
Luke Pulverenti 3ccecd3ca3 channel fixes
2014-05-18 15:58:42 -04:00

13 lines
No EOL
319 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
public interface IChannelMediaItem : IChannelItem
{
bool IsInfiniteStream { get; set; }
ChannelMediaContentType ContentType { get; set; }
List<ChannelMediaInfo> ChannelMediaSources { get; set; }
}
}