From 4aa959c1e266442804b6961aeb2d09f4b812f744 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 30 Sep 2014 00:47:30 -0400 Subject: display trailers within suggestions --- .../Channels/InternalChannelFeatures.cs | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Controller/Channels/InternalChannelFeatures.cs') diff --git a/MediaBrowser.Controller/Channels/InternalChannelFeatures.cs b/MediaBrowser.Controller/Channels/InternalChannelFeatures.cs index bcc6791598..fc25304495 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 /// The automatic refresh levels. public int? AutoRefreshLevels { get; set; } + /// + /// Gets or sets the daily download limit. + /// + /// The daily download limit. + public int? DailyDownloadLimit { get; set; } + public InternalChannelFeatures() { MediaTypes = new List(); @@ -46,4 +53,13 @@ namespace MediaBrowser.Controller.Channels DefaultSortFields = new List(); } } + + public class ChannelDownloadException : Exception + { + public ChannelDownloadException(string message) + : base(message) + { + + } + } } -- cgit v1.2.3