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
38
39
40
41
| using System;
| using System.Collections.Generic;
|
| namespace HDL_ON.UI.UI2.FuntionControlView.Aks.Entity
| {
| /// <summary>
| /// 遥控器实体
| /// </summary>
| public class RemoteControlEntity
| {
|
| /// <summary>
| /// 自定义的
| /// </summary>
| public string deviceId = string.Empty;
| /// <summary>
| /// 1 = 播放器
| ///2 = 功放
| ///3 = 电视
| ///4 = 机顶盒
| ///5 = 投影仪
| ///6 = 万能遥控器
| /// </summary>
| public int type;
| /// <summary>
| /// 遥控器id
| /// </summary>
| public string rcId = string.Empty;
| /// <summary>
| /// 遥控器名称
| /// </summary>
| public string name = string.Empty;
| /// <summary>
| /// 按键列表
| /// </summary>
| public List<KeypadEntity> keypads = new List<KeypadEntity>();
|
| }
|
|
| }
|
|