using Edge.Core.Parser.BinaryParser.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZhongSheng_NonIC_Pump
{
///
/// PC 发送参数信息字符串给油机
///
public class AckSetPumpConfigResponse : MessageTemplateBase
{
///
/// 固定值0x01
///
[Format(1, EncodingType.BIN, 1)]
public byte 参数 { get; set; }
///
/// 参数状态为0x00表示设置成功,其他表示失败
///
[Format(1, EncodingType.BIN, 2)]
public byte 状态 { get; set; }
}
}