HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2020-04-28 e22fdb94322e6cec38e5e4a9aec13d431a133fde
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;
        }
    }
}