ChannelOptions.cs 447 B

123456789101112131415161718
  1. namespace MediaBrowser.Model.Configuration
  2. {
  3. public class ChannelOptions
  4. {
  5. public int? PreferredStreamingWidth { get; set; }
  6. public string DownloadPath { get; set; }
  7. public int? MaxDownloadAge { get; set; }
  8. public string[] DownloadingChannels { get; set; }
  9. public ChannelOptions()
  10. {
  11. DownloadingChannels = new string[] { };
  12. MaxDownloadAge = 30;
  13. }
  14. }
  15. }