v2.0 引用新一代Remoting,简化IoTZero架构
智能大石头
authored at
2024-06-20 23:03:45
ZeroIoT
using NewLife.IoT.ThingSpecification;
namespace NewLife.IoT.Models;
/// <summary>物模型上报</summary>
public class ThingSpecModel
{
/// <summary>设备编码</summary>
public String DeviceCode { get; set; }
/// <summary>物模型</summary>
public ThingSpec Spec { get; set; }
}
|