MoS2/Framework/MECF.Framework.RT.EquipmentLibrary/HardwareUnits/Common/IOResponse.cs

15 lines
435 B
C#
Raw Permalink Normal View History

2026-06-15 10:56:30 +08:00
using System;
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Common
{
public class IOResponse
{
public string SourceCommandName { get; set; }
public string SourceCommand { get; set; }
public string SourceCommandType { get; set; }
public string ResonseContent { get; set; }
public DateTime ResonseRecievedTime { get; set; }
public bool IsAck { get; set; }
}
}