LASAPlatform/OpenAuth.WebApi/CloudSdk/GatewayManager.cs

22 lines
610 B
C#

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