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 GalilAxisDatas { get; set; } } }