namespace HealthMonitor.Model.Config { public class ServiceConfig { /// /// 数据服务Host Url /// 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!; } }