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.
|
- 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!;
- }
- }
|