AckDisplayInfoResponse.cs 509 B

123456789101112131415161718192021
  1. using Edge.Core.Parser.BinaryParser.Attributes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ZhongSheng_NonIC_Pump
  8. {
  9. /// <summary>
  10. /// PC 发送信息提示给油机
  11. /// </summary>
  12. public class AckDisplayResponse : MessageTemplateBase
  13. {
  14. /// <summary>
  15. /// 参数为常数0x00
  16. /// </summary>
  17. [Format(1, EncodingType.BIN, 1)]
  18. public byte 参数 { get; set; }
  19. }
  20. }