SIC-12/Framework/MECF.Framework.RT.EquipmentLibrary/HardwareUnits/Common/IOResponse.cs

15 lines
435 B
C#
Raw Normal View History

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; }
}
}