12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.Device.Galil
- {
- public class GalilControllerData
- {
- public byte ErrorCode { get; set; }
- public byte Status { get; set;}
- public ushort Sample { get; set; }
- public byte[] Inputs { get; set; }
- public byte[] Outputs { get; set; }
- public byte[] SBlocks { get; set; }
- public byte[] TBlocks { get; set; }
- public List<GalilAxisData> GalilAxisDatas { get; set; }
- }
- }
|