lss
2020-06-03 6c70a72d6f3d11baa65be466d4023b2f2ca79e39
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;
        } 
    }
}