LiveTvOptions.cs 599 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.LiveTv
  3. {
  4. public class LiveTvOptions
  5. {
  6. public int? GuideDays { get; set; }
  7. public bool EnableMovieProviders { get; set; }
  8. public List<TunerHostInfo> TunerHosts { get; set; }
  9. public string RecordingPath { get; set; }
  10. public LiveTvOptions()
  11. {
  12. EnableMovieProviders = true;
  13. TunerHosts = new List<TunerHostInfo>();
  14. }
  15. }
  16. public class TunerHostInfo
  17. {
  18. public string Url { get; set; }
  19. public string Type { get; set; }
  20. }
  21. }