mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
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; }
|
|
}
|
|
} |