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
37
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace Shared.Phone.UserCenter
| {
| /// <summary>
| /// 网关备份的枚举
| /// </summary>
| public enum GatewayBackupEnum
| {
| /// <summary>
| /// 修改Mac名称
| /// </summary>
| AMac名称 = 1,
| /// <summary>
| /// 修改端点名称
| /// </summary>
| A端点名称 = 2,
| /// <summary>
| /// 设置PIR传感器的【灯光配置】
| /// </summary>
| APir灯光配置 = 3,
| /// <summary>
| /// 按键面板颜色调节
| /// </summary>
| A按键面板颜色调节 = 4,
| /// <summary>
| /// 按键面板亮度调节
| /// </summary>
| A按键面板亮度调节 = 5,
| /// <summary>
| /// 按键面板节能模式
| /// </summary>
| A按键面板节能模式 = 6
| }
| }
|
|