1
wxr
2023-03-31 7e42cc13a14b7de31c9f5d5c61cdf24f3246335d
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
42
43
44
45
46
47
using System;
using System.Collections.Generic;
 
namespace Shared
{
    [System.Serializable]
    public class HomeTheater
    {
       
        public string Name;
 
        /// <summary>
        /// The name of the file.
        /// HomeTheater_*****
        /// </summary>
        public string FileName;
 
        public List<HomeTheaterButton> ListHomeTheaterButton = new List<HomeTheaterButton> ();
    }
 
 
 
    [System.Serializable]
    public class HomeTheaterButton
    {
        /// <summary>
        /// 控件加载的顺序,1-7为上半部分,已经固定
        /// </summary>
        public int LoadingOrder = 1;
 
        public string BackgroundImage = "";
 
        /// <summary>
        /// 控制命令类型,
        /// 0:通用开关
        /// 1:。。。。
        /// 2:。。。。
        /// </summary>
        public int CommandType = 0xE01C;
 
        /// <summary>
        /// 发送的附加数据
        /// </summary>
        public System.Collections.Generic.List<byte> SendBytes = new System.Collections.Generic.List<byte> ();  
 
    }
}