Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- namespace HealthMonitor.Model.Config
- {
- public class ServiceConfig
- {
- /// <summary>
- /// 数据服务Host Url
- /// </summary>
- public string TelpoDataUrl { get; set; } = default!;
-
- public string EtcdServerAddress { get; set; } = default!;
-
- public string IotWebApiUrl { get; set; } = default!;
-
- public string IotAuth { get; set; } = default!;
-
- public string IotCore { get; set; } = default!;
-
- public string KafkaServerAddress { get; set; } = default!;
- }
- }
|