using System;
using System.Collections.Generic;
namespace HDL_ON.UI.UI2.PersonalCenter.PirDevice
{
public class Pir
{
///
/// 添加按键列表
///
public static List BuottonList = new List();
}
public class ButtonObj
{
public string Key = string.Empty;
///
/// #app 显示的文字
///
public string value = string.Empty;
}
public class Control
{
///
/// 红外宝设备Id
///
public string deviceId = "0";
///
/// 红外遥控器名称
///
public string name = "0";
///
/// 红外遥控器spk
///
public string spk = "ir.module";
///
/// library=库类型, learn=不需要额外追加属性
///
public string type = "learn";
///
/// 码组号
///
public string group_id = "12";
///
/// 红外码
///
public List library = new List();
}
}