13 lines
319 B
C#
13 lines
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; }
|
|
}
|
|
} |