jellyfin/MediaBrowser.Controller/Channels/IChannelMediaItem.cs

18 lines
464 B
C#
Raw Normal View History

2014-09-28 17:27:26 +02:00
using MediaBrowser.Model.Channels;
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
2014-05-18 21:58:42 +02:00
namespace MediaBrowser.Controller.Channels
2014-05-12 01:02:28 +02:00
{
public interface IChannelMediaItem : IChannelItem
{
2014-06-02 21:32:41 +02:00
long? RunTimeTicks { get; set; }
string MediaType { get; }
2014-05-12 01:02:28 +02:00
ChannelMediaContentType ContentType { get; set; }
2014-05-18 21:58:42 +02:00
2015-09-20 04:06:56 +02:00
ExtraType? ExtraType { get; set; }
2014-09-28 17:27:26 +02:00
2014-05-18 21:58:42 +02:00
List<ChannelMediaInfo> ChannelMediaSources { get; set; }
2014-05-12 01:02:28 +02:00
}
}