2014-03-18 13:05:57 -04:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-05-27 13:09:48 -04:00
|
|
|
|
using MediaBrowser.Model.Channels;
|
2014-05-03 00:20:04 -04:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-05-18 15:58:42 -04:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-18 13:05:57 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
|
|
{
|
2014-05-23 10:09:58 -04:00
|
|
|
|
public class ChannelFolderItem : Folder, IChannelItem
|
2014-03-18 13:05:57 -04:00
|
|
|
|
{
|
2014-03-18 21:35:40 -04:00
|
|
|
|
public string ExternalId { get; set; }
|
|
|
|
|
|
|
2014-05-04 20:46:52 -04:00
|
|
|
|
public string ChannelId { get; set; }
|
2014-05-18 15:58:42 -04:00
|
|
|
|
|
2014-03-18 21:35:40 -04:00
|
|
|
|
public ChannelItemType ChannelItemType { get; set; }
|
2014-05-27 13:09:48 -04:00
|
|
|
|
public ChannelFolderType ChannelFolderType { get; set; }
|
2014-03-18 21:35:40 -04:00
|
|
|
|
|
|
|
|
|
|
public string OriginalImageUrl { get; set; }
|
2014-05-03 00:20:04 -04:00
|
|
|
|
|
|
|
|
|
|
protected override bool GetBlockUnratedValue(UserConfiguration config)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Don't block.
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override bool SupportsLocalMetadata
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2014-05-18 15:58:42 -04:00
|
|
|
|
|
2014-06-02 15:32:41 -04:00
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
|
{
|
|
|
|
|
|
return ExternalId;
|
|
|
|
|
|
}
|
2014-03-18 13:05:57 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|