aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/IChannelMediaItem.cs
blob: 50df07e72b710505b9b0fd55f1427a9465376dff (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; }
    }
}