namespace OpenAuth.WebApi.CloudSdk; public class GatewayManager { public string GatewaySn { get; set; } public string DroneSn { get; set; } public GatewayType GatewayType { get; set; } /// /// 机场任务准备异常通知 /// public string FlightSetupExceptionNotify = TopicConst.ThingModelPre + TopicConst.Product + "%s" + TopicConst.EventsSuffix; public GatewayManager(string gatewaySn, string droneSn, GatewayType gatewayType) { GatewaySn = gatewaySn; DroneSn = droneSn; GatewayType = gatewayType; } }