jellyfin/MediaBrowser.Controller/Channels/IChannelMediaItem.cs

18 lines
463 B
C#
Raw Normal View History

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