jellyfin/MediaBrowser.Controller/Channels/IChannelMediaItem.cs
2014-05-19 15:51:56 -04:00

14 lines
No EOL
354 B
C#

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