namespace Shared { /// /// OnePortMqttFR /// [System.Serializable] public class OnePortMqttFR : OnePortWirelessFR { public OnePortMqttFR() : base() { this.Type = DeviceType.OnePortMqttFR; } /// /// AES加密使能 /// public bool AESEnable; /// /// AES 密码 /// public string AESPassword; /// /// DNS使能(1byte) /// public bool DNSEnable; /// /// DNS解析地址 /// public string DNSAddress = string.Empty; /// /// DNS备用解析地址 /// public string DNSAlternateAddress = string.Empty; } }