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