1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using System;
| using System.Collections.Generic;
| namespace HDL_ON.UI.UI2.PersonalCenter.PirDevice
| {
| public class Pir
| {
| /// <summary>
| /// 添加按键列表
| /// </summary>
| public static List<ButtonObj> BuottonList = new List<ButtonObj>();
|
| }
| public class ButtonObj
| {
| public string Key = string.Empty;
| /// <summary>
| /// #app 显示的文字
| /// </summary>
| public string value = string.Empty;
| }
| }
|
|