GalilControllerData.cs 618 B

12345678910111213141516171819202122232425262728
  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.Common.Device.Galil
  7. {
  8. public class GalilControllerData
  9. {
  10. public byte ErrorCode { get; set; }
  11. public byte Status { get; set;}
  12. public ushort Sample { get; set; }
  13. public byte[] Inputs { get; set; }
  14. public byte[] Outputs { get; set; }
  15. public byte[] SBlocks { get; set; }
  16. public byte[] TBlocks { get; set; }
  17. public List<GalilAxisData> GalilAxisDatas { get; set; }
  18. }
  19. }