Channels.cs 482 B

1234567891011121314151617181920212223
  1. #nullable disable
  2. namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
  3. {
  4. internal class Channels
  5. {
  6. public string GuideNumber { get; set; }
  7. public string GuideName { get; set; }
  8. public string VideoCodec { get; set; }
  9. public string AudioCodec { get; set; }
  10. public string URL { get; set; }
  11. public bool Favorite { get; set; }
  12. public bool DRM { get; set; }
  13. public bool HD { get; set; }
  14. }
  15. }