using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.Common.Device.Galil { public class GalilCommand { /// /// 功能码 /// public byte CommandCode { get; set; } /// /// 设置数据数组 /// public byte[] Datas { get; set; } /// /// 设置数据 /// public string SetData { get; set; } /// /// 接收的数据 /// public GalilControllerData ControllerData { get; set; } } }