aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelFeatures.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelFeatures.cs')
-rw-r--r--MediaBrowser.Model/Channels/ChannelFeatures.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelFeatures.cs b/MediaBrowser.Model/Channels/ChannelFeatures.cs
index 494ebe3a3..2acbdf9c3 100644
--- a/MediaBrowser.Model/Channels/ChannelFeatures.cs
+++ b/MediaBrowser.Model/Channels/ChannelFeatures.cs
@@ -5,12 +5,30 @@ namespace MediaBrowser.Model.Channels
public class ChannelFeatures
{
/// <summary>
+ /// Gets or sets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ public string Name { get; set; }
+
+ /// <summary>
+ /// Gets or sets the identifier.
+ /// </summary>
+ /// <value>The identifier.</value>
+ public string Id { get; set; }
+
+ /// <summary>
/// Gets or sets a value indicating whether this instance can search.
/// </summary>
/// <value><c>true</c> if this instance can search; otherwise, <c>false</c>.</value>
public bool CanSearch { get; set; }
/// <summary>
+ /// Gets or sets a value indicating whether this instance can get all media.
+ /// </summary>
+ /// <value><c>true</c> if this instance can get all media; otherwise, <c>false</c>.</value>
+ public bool CanGetAllMedia { get; set; }
+
+ /// <summary>
/// Gets or sets the media types.
/// </summary>
/// <value>The media types.</value>
@@ -44,6 +62,12 @@ namespace MediaBrowser.Model.Channels
/// <value><c>true</c> if this instance can filter; otherwise, <c>false</c>.</value>
public bool CanFilter { get; set; }
+ /// <summary>
+ /// Gets or sets a value indicating whether this instance can download all media.
+ /// </summary>
+ /// <value><c>true</c> if this instance can download all media; otherwise, <c>false</c>.</value>
+ public bool CanDownloadAllMedia { get; set; }
+
public ChannelFeatures()
{
MediaTypes = new List<ChannelMediaType>();