Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/IChannelMediaItem.cs

18 lines
463 B
C#
Raw Normal View History

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