BruceLee
2019-09-24 a9f88790c31c8b61d9b90241c4df258a980f1c00
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;
    }
}