公告板
版本库
filestore
活动
搜索
登录
温居城
/
HomeApp
派生自
~xm/HomeApp
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
请合并最新多功能面板代码
xm
2020-07-21
9a4b76398009cf76c508d61f7e48fb6f5cb7ac2d
[~wjc/HomeApp.git]
/
ZigbeeApp
/
Shared
/
Phone
/
ZigBee
/
Device
/
Repeater.cs
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;
}
}
}