using DataEntity.Sockets.Base;
using HxModel.Sockets.HxHotel;
namespace XImagingXhandler.XDAL
{
///
/// 返回数据
///
public class HxClientResponseObject
{
///
/// 设备类型(机械臂、耗材堆栈、工作站、培养箱)
///
public string EquipmentType { get; set; }
///
/// IP
///
public string Ip { get; set; }
///
/// 端口
///
public int Port { get; set; }
///
/// 设备唯一ID
///
public string EquipmentId { get; set; }
///
/// 客户端返回数据
///
public HxResponseBase ResponseBase { get; set; }
}
}