jellyfin-server/MediaBrowser.Controller/Channels/ChannelAudioItem.cs

18 lines
446 B
C#
Raw Normal View History

2014-03-18 01:45:41 +00:00
using MediaBrowser.Controller.Entities.Audio;
namespace MediaBrowser.Controller.Channels
{
public class ChannelAudioItem : Audio, IChannelItem
{
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; }
}
}