- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.GilbarcoDispenserPayTerminal.MessageEntities.Outgoing
- {
- public class DataLengthCommand : CardMessageBase
- {
- public DataLengthCommand() : base(HandleType.DataDownload)
- {
- Stx = 0xFA;
- }
- }
- }
|