JLChen
2020-06-04 6d55af8792cf8fbef0055e677b900fc352dba9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
namespace Shared
{
    /// <summary>
    /// OnePortMqttFR
    /// </summary>
    [System.Serializable]
    public class OnePortMqttFR : OnePortWirelessFR
    {
        public OnePortMqttFR() : base()
        {
            this.Type = DeviceType.OnePortMqttFR;
        }
 
        /// <summary>
        /// AES加密使能
        /// </summary>
        public bool AESEnable;
        /// <summary>
        /// AES 密码
        /// </summary>
        public string AESPassword;
 
        /// <summary>
        /// DNS使能(1byte)
        /// </summary>
        public bool DNSEnable;
        /// <summary>
        /// DNS解析地址
        /// </summary>
        public string DNSAddress = string.Empty;
        /// <summary>
        /// DNS备用解析地址
        /// </summary>
        public string DNSAlternateAddress = string.Empty;
    }
}