lss
2020-05-20 a6c8525a85eae4c64b90b651d42b6c1f6d0df90f
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;
        } 
    }
}