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

57 lines
1.4 KiB
C#
Raw Normal View History

2014-05-18 15:58:42 -04:00
using MediaBrowser.Controller.Entities.Audio;
2014-05-03 00:20:04 -04:00
using MediaBrowser.Model.Configuration;
2014-05-18 15:58:42 -04:00
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
using System.Linq;
2014-03-17 21:45:41 -04:00
namespace MediaBrowser.Controller.Channels
{
2014-03-18 21:35:40 -04:00
public class ChannelAudioItem : Audio, IChannelMediaItem
2014-03-17 21:45:41 -04:00
{
public string ExternalId { get; set; }
2014-05-04 20:46:52 -04:00
public string ChannelId { get; set; }
2014-03-17 21:45:41 -04:00
public ChannelItemType ChannelItemType { get; set; }
public bool IsInfiniteStream { get; set; }
public ChannelMediaContentType ContentType { get; set; }
public string OriginalImageUrl { get; set; }
2014-05-03 00:20:04 -04:00
2014-05-18 15:58:42 -04:00
public List<ChannelMediaInfo> ChannelMediaSources { get; set; }
2014-05-03 00:20:04 -04:00
protected override bool GetBlockUnratedValue(UserConfiguration config)
{
return config.BlockUnratedItems.Contains(UnratedItem.ChannelContent);
}
public override bool SupportsLocalMetadata
{
get
{
return false;
}
}
2014-05-18 15:58:42 -04:00
public ChannelAudioItem()
{
ChannelMediaSources = new List<ChannelMediaInfo>();
}
public override LocationType LocationType
{
get
{
if (string.IsNullOrEmpty(Path))
{
return LocationType.Remote;
}
return base.LocationType;
}
}
2014-03-17 21:45:41 -04:00
}
}