ChannelOptions.cs 200 B

12345678
  1. namespace MediaBrowser.Model.Configuration
  2. {
  3. public class ChannelOptions
  4. {
  5. public int? PreferredStreamingWidth { get; set; }
  6. public string DownloadPath { get; set; }
  7. }
  8. }