xm
2020-04-29 07466c19110693e3e439a7d7c8ad0bc21d9b3287
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using Newtonsoft.Json.Linq;
 
namespace ZigBee.Device
{
    [System.Serializable]
    public class HumiditySensor : CommonDevice
    {
        public HumiditySensor()
        {
            this.Type = DeviceType.FreshAirHumiditySensor;
        }
    }
}