TunerHostInfo.cs 817 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Model.LiveTv
  4. {
  5. public class TunerHostInfo
  6. {
  7. public TunerHostInfo()
  8. {
  9. AllowHWTranscoding = true;
  10. IgnoreDts = true;
  11. }
  12. public string Id { get; set; }
  13. public string Url { get; set; }
  14. public string Type { get; set; }
  15. public string DeviceId { get; set; }
  16. public string FriendlyName { get; set; }
  17. public bool ImportFavoritesOnly { get; set; }
  18. public bool AllowHWTranscoding { get; set; }
  19. public bool EnableStreamLooping { get; set; }
  20. public string Source { get; set; }
  21. public int TunerCount { get; set; }
  22. public string UserAgent { get; set; }
  23. public bool IgnoreDts { get; set; }
  24. }
  25. }