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

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

        ChannelMediaContentType ContentType { get; set; }

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