黄学彪
2020-12-16 0d9f64668fd7350d6a21fd157e32009a96d98134
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
using System;
using System.Collections.Generic;
using System.Text;
using ZigBee.Device;
 
namespace Shared.Phone
{
    /// <summary>
    /// 网关的Resourse
    /// </summary>
    public class HdlGatewayResourse
    {
        /// <summary>
        /// 当前选择的网关ID
        /// </summary>
        public static string NowSelectGatewayId = string.Empty;
        /// <summary>
        /// APP最后选择的网关ID(或许这个变量是设备管理界面专用的)
        /// </summary>
        public static string AppOldSelectGatewayId = string.Empty;
        /// <summary>
        /// 测试能否广播得到网关,通常情况下为null
        /// </summary>
        public static Dictionary<string, ZbGateway> DicReceiveGatewayTest = null;
    }
}