mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 18:54:48 +03: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; }
|
|
}
|
|
} |