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

namespace MediaBrowser.Controller.Channels
{
    public class ChannelAudioItem : Audio, 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; }
    }
}