TunerHostInfo.cs 742 B

1234567891011121314151617181920212223242526272829303132333435
  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. }
  11. public string Id { get; set; }
  12. public string Url { get; set; }
  13. public string Type { get; set; }
  14. public string DeviceId { get; set; }
  15. public string FriendlyName { get; set; }
  16. public bool ImportFavoritesOnly { get; set; }
  17. public bool AllowHWTranscoding { get; set; }
  18. public bool EnableStreamLooping { get; set; }
  19. public string Source { get; set; }
  20. public int TunerCount { get; set; }
  21. public string UserAgent { get; set; }
  22. }
  23. }