IOResponse.cs 537 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Common
  7. {
  8. public class IOResponse
  9. {
  10. public string SourceCommandName { get; set; }
  11. public string SourceCommand { get; set; }
  12. public string SourceCommandType { get; set; }
  13. public string ResonseContent { get; set; }
  14. public DateTime ResonseRecievedTime { get; set; }
  15. public bool IsAck { get; set; }
  16. }
  17. }