lss
2020-05-20 a6c8525a85eae4c64b90b651d42b6c1f6d0df90f
1
2
3
4
5
6
7
8
9
10
11
12
using System;
namespace ZigBee.Device
{
    [System.Serializable]
    public class Repeater : CommonDevice
    {
        public Repeater()
        {
            this.Type = DeviceType.Repeater;
        }
    }
}