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