123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace VeederRoot_ATG_Console.MessageEntity.DispenserInterface.Incoming
- {
- public class GenericResponse : MessageBase
- {
- public enum GenericResponseResult
- {
- ACK = 0x16,
- NAK = 0x15
- }
- public GenericResponseResult Result
- {
- get
- {
- return (GenericResponseResult)
- (Enum.Parse(typeof(GenericResponseResult), base.FunctionCodeRaw));
- }
- }
- }
- }
|