using Edge.Core.Parser.BinaryParser.Attributes;
using System;
using System.Collections.Generic;
using System.Text;
namespace VeederRoot_ATG_Console.MessageEntity.Incoming
{
///
/// SOH + FunctionCode + DataField + &&CheckSum(optional) + ETX
///
public abstract class IncomingMessageBase : MessageBase
{
///
/// exclude the part like: i201TT
///
[EnumerableFormat("%cascade", -8000)]
public List DataFieldAndOptionalCheckSumAndETX { get; set; }
}
}