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;
}
}