ZigbeeApp/Shared/Phone/ZigBee/Device/ToggleLight.cs
New file @@ -0,0 +1,16 @@ using System; using System.Collections.Generic; using Newtonsoft.Json.Linq; namespace ZigBee.Device { [System.Serializable] public class ToggleLight : LightBase { public ToggleLight() { this.Type = DeviceType.OnOffOutput; } } }