You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
601B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HealthMonitor.Model.Config
  7. {
  8. public class TDengineServiceConfig
  9. {
  10. public string Host { get; set; } = default!;
  11. public string UserName { get; set; } = default!;
  12. public string Password { get; set; } = default!;
  13. public short Port { get; set; } = default!;
  14. public string DB { get; set; } = default!;
  15. public short RestPort { get; set; } = default!;
  16. public string Token {get; set; } = default!;
  17. }
  18. }