aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/IChannelMediaItem.cs
blob: 60a29da90bb169702798527757ed0c2f11c00c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using MediaBrowser.Model.Channels;
using MediaBrowser.Model.Entities;
using System.Collections.Generic;

namespace MediaBrowser.Controller.Channels
{
    public interface IChannelMediaItem : IChannelItem
    {
        long? RunTimeTicks { get; set; }
        string MediaType { get; }

        ChannelMediaContentType ContentType { get; set; }

        ExtraType? ExtraType { get; set; }

        List<ChannelMediaInfo> ChannelMediaSources { get; set; }
    }
}