gxc
2019-10-31 1a2061079e97a738ec7b8959bfd9a6e6c6997403
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;
        } 
    }
}