jellyfin/MediaBrowser.Controller/Channels/IChannelMediaItem.cs
2014-09-22 17:56:54 -04:00

15 lines
385 B
C#

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; }
}
}