黄学彪
2020-05-13 2be70a32d2a8c517bd9868fb60913fcc843e66fe
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;
        } 
    }
}