Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

ServiceConfig.cs 433B

6 miesięcy temu
123456789101112131415161718
  1. namespace HealthMonitor.Model.Config
  2. {
  3. public class ServiceConfig
  4. {
  5. /// <summary>
  6. /// 数据服务Host Url
  7. /// </summary>
  8. public string TelpoDataUrl { get; set; } = default!;
  9. public string EtcdServerAddress { get; set; } = default!;
  10. public string IotWebApiUrl { get; set; } = default!;
  11. public string IotAuth { get; set; } = default!;
  12. public string IotCore { get; set; } = default!;
  13. }
  14. }