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

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

        ChannelItemType ChannelItemType { get; set; }

        bool IsInfiniteStream { get; set; }

        ChannelMediaContentType ContentType { get; set; }

        string OriginalImageUrl { get; set; }
    }
}