黄学彪
2020-02-21 bd46c57c77c276014db3192a4e2cc96e23c93202
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Text;
using ZigBee.Device;
 
namespace Shared.Phone.UserCenter
{
    /// <summary>
    /// 网关的Resourse
    /// </summary>
    public class GatewayResourse
    {
        /// <summary>
        /// 当前选择的网关(使用完时,请置空)
        /// </summary>
        public static ZbGateway NowSelectGateway = null;
        /// <summary>
        /// APP最后选择的网关ID(或许这个变量是设备管理界面专用的)
        /// </summary>
        public static string AppOldSelectGatewayId = string.Empty;
    }
}