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