15 lines
435 B
C#
15 lines
435 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|