aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/InternalChannelFeatures.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-30 00:47:30 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-30 00:47:30 -0400
commit4aa959c1e266442804b6961aeb2d09f4b812f744 (patch)
tree3f43d42aacadb463dd945e663657a51dc5808b19 /MediaBrowser.Controller/Channels/InternalChannelFeatures.cs
parent1fcfff41c7d33266a059b9f4161f9aea34be8de4 (diff)
display trailers within suggestions
Diffstat (limited to 'MediaBrowser.Controller/Channels/InternalChannelFeatures.cs')
-rw-r--r--MediaBrowser.Controller/Channels/InternalChannelFeatures.cs18
1 files changed, 17 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Channels/InternalChannelFeatures.cs b/MediaBrowser.Controller/Channels/InternalChannelFeatures.cs
index bcc679159..fc2530449 100644
--- a/MediaBrowser.Controller/Channels/InternalChannelFeatures.cs
+++ b/MediaBrowser.Controller/Channels/InternalChannelFeatures.cs
@@ -1,4 +1,5 @@
-using MediaBrowser.Model.Channels;
+using System;
+using MediaBrowser.Model.Channels;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
@@ -38,6 +39,12 @@ namespace MediaBrowser.Controller.Channels
/// <value>The automatic refresh levels.</value>
public int? AutoRefreshLevels { get; set; }
+ /// <summary>
+ /// Gets or sets the daily download limit.
+ /// </summary>
+ /// <value>The daily download limit.</value>
+ public int? DailyDownloadLimit { get; set; }
+
public InternalChannelFeatures()
{
MediaTypes = new List<ChannelMediaType>();
@@ -46,4 +53,13 @@ namespace MediaBrowser.Controller.Channels
DefaultSortFields = new List<ChannelItemSortField>();
}
}
+
+ public class ChannelDownloadException : Exception
+ {
+ public ChannelDownloadException(string message)
+ : base(message)
+ {
+
+ }
+ }
}