using System; using System.Collections.Generic; namespace Shared { public class YiPanelScene { public DeviceType Type = DeviceType.Scene; /// /// 场景名称 /// public string Name; /// /// 通道号 /// public byte Channelnumber; /// /// 大类 /// public byte LargeClass; /// /// 小类 /// public byte sub; public List scenedevicelist = new List (); public byte IconIndex; } }