gxc
2019-12-03 a7a6907b3df65db9c4b2bb1237f709db5c985b52
1
2
3
4
5
6
7
8
9
10
11
using System;
namespace ZigBee.Device
{
    public class AirSwitch : LightBase
    {
         public AirSwitch()
        {
            this.Type = DeviceType.AirSwitch;
        } 
    }
}