You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
393 B
21 lines
393 B
6 months ago
|
namespace Entity.Api.Resp;
|
||
|
|
||
|
public class DeviceStateResp
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// tBox连接状态
|
||
|
/// </summary>
|
||
|
|
||
|
public bool BoxConnectFlag { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 云平台连接状态
|
||
|
/// </summary>
|
||
|
|
||
|
public bool CloudConnectFlag{ get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Plc连接状态
|
||
|
/// </summary>
|
||
|
public bool PlcConnectFlag{ get; set; }
|
||
|
}
|