using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Model.Config { public class ServiceConfig { /// /// 数据服务Host Url /// public string TelpoDataUrl { get; set; } = default!; /// /// Kafka服务地址 /// public string MqServerAddress { get; set; } = default!; } }