using System; using System.Collections.Generic; using Newtonsoft.Json.Linq; namespace ZigBee.Device { public class LevelControlSwitch : LightBase { public LevelControlSwitch() { this.Type = DeviceType.LevelControlSwitch; } } }