1234567891011121314151617181920212223242526272829303132333435 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace VeederRoot_ATG_Console.MessageEntity.Outgoing
- {
-
-
-
- public abstract class OutgoingMessageBase : MessageBase
- {
-
-
-
-
-
-
- public OutgoingMessageBase(MessageFormat messageFormat,
- FuncCode functionCode, string functionCodeAppendix)
- {
- base.FunctionCode =
- new Tuple<MessageFormat, FuncCode, string>(
- messageFormat,
- functionCode,
- functionCodeAppendix);
- }
- [EnumerableFormat(6, -9998)]
- public List<byte> SecurityCode { get; set; }
- [EnumerableFormat("%cascade", -8000)]
- public List<byte> DataField { get; set; }
- }
- }
|