2014-06-29 17:35:05 +00:00
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class ChannelOptions
|
|
|
|
|
{
|
|
|
|
|
public int? PreferredStreamingWidth { get; set; }
|
|
|
|
|
|
|
|
|
|
public string DownloadPath { get; set; }
|
|
|
|
|
public int? MaxDownloadAge { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] DownloadingChannels { get; set; }
|
|
|
|
|
|
2014-08-14 13:24:30 +00:00
|
|
|
|
public double? DownloadSizeLimit { get; set; }
|
|
|
|
|
|
2014-06-29 17:35:05 +00:00
|
|
|
|
public ChannelOptions()
|
|
|
|
|
{
|
|
|
|
|
DownloadingChannels = new string[] { };
|
2014-09-18 04:50:21 +00:00
|
|
|
|
DownloadSizeLimit = .5;
|
2014-06-29 17:35:05 +00:00
|
|
|
|
MaxDownloadAge = 30;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|