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

18 lines
445 B
C#
Raw Normal View History

2014-03-17 21:45:41 -04:00
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Channels
{
2014-03-18 21:35:40 -04:00
public class ChannelVideoItem : Video, IChannelMediaItem
2014-03-17 21:45:41 -04:00
{
public string ExternalId { get; set; }
public ChannelItemType ChannelItemType { get; set; }
public bool IsInfiniteStream { get; set; }
public ChannelMediaContentType ContentType { get; set; }
public string OriginalImageUrl { get; set; }
}
}