aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/IChannelItem.cs
blob: b653cead0428dfd032ebf386a2201e8bfc552223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using MediaBrowser.Controller.Entities;

namespace MediaBrowser.Controller.Channels
{
    public interface IChannelItem : IHasImages
    {
        string ChannelId { get; set; }

        string ExternalId { get; set; }

        ChannelItemType ChannelItemType { get; set; }

        string OriginalImageUrl { get; set; }
    }

    public interface IChannelMediaItem : IChannelItem
    {
        bool IsInfiniteStream { get; set; }

        ChannelMediaContentType ContentType { get; set; }
    }
}