1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace VeederRoot_ATG_Console.MessageEntity.DispenserInterface.Outgoing
- {
-
-
-
- public class StatusReportRequest : OutgoingMessageBase
- {
- public StatusReportRequest()
- {
- base.FunctionCodeRaw = "D";
- }
- }
- }
|