namespace JiLinApp.Biz.TransmitAlarm; public class AlarmPlatformConfig { public bool RealPlay { get; set; } public string Type { get; set; } public MqttConfig Mqtt { get; set; } } public class MqttConfig { //public bool Local { get; set; } public string Ip { get; set; } public int Port { get; set; } public string UserName { get; set; } public string Password { get; set; } public string ClientId { get; set; } public int RetryTime { get; set; } public int RetryInterval { get; set; } public string PubAlarmTopic { get; set; } public string PubDevicesTopic { get; set; } public string PubSensorsTopic { get; set; } public string PubDeviceStateTopic { get; set; } public string PubSensorStateTopic { get; set; } public string SubCmdTopic { get; set; } } public class ZmqConfig { public string AlarmPubAddr { get; set; } public string AlarmPubTopic { get; set; } }