Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/IChannelMediaItem.cs

13 lines
319 B
C#
Raw Normal View History

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