1234567891011121314151617181920212223 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using Edge.Core.Parser.BinaryParser.MessageEntity;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace VeederRoot_ATG_Console.MessageEntity.DispenserInterface
- {
- public abstract class MessageBase : MessageBaseGeneric
- {
- //[Format(1, EncodingType.BIN, -9999)]
- //public byte SOH { get; set; } = 0x01;
- /// <summary>
- /// </summary>
- [Format(1, EncodingType.ASCII, -9998)]
- public string FunctionCodeRaw { get; set; }
- [Format(1, EncodingType.BIN, -9000)]
- public byte EOT { get; set; } = 0x03;
- }
- }
|