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.

пре 1 година
пре 1 година
пре 4 месеци
пре 3 месеци
пре 1 година
пре 1 година
1234567891011121314151617181920
  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. public string KafkaServerAddress { get; set; } = default!;
  14. }
  15. }