aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelVideoItem.cs
blob: 83b85794d0dc18e1f8a0ab7d9762f5c4ecdbc936 (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 class ChannelVideoItem : Video, IChannelMediaItem
    {
        public string ExternalId { get; set; }

        public ChannelItemType ChannelItemType { get; set; }

        public bool IsInfiniteStream { get; set; }

        public ChannelMediaContentType ContentType { get; set; }

        public string OriginalImageUrl { get; set; }
    }
}