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