1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WayneChina_IcCardReader_SinoChem.MessageEntity.Outgoing
- {
- public class NotifyTransactionIsDoneRequest : IcCardReaderMessageBase
- {
- public NotifyTransactionIsDoneRequest()
- {
- base.RawData = new List<byte>();
- base.RawData.Add(0x06);
- base.RawData.Add(0x00);
- base.RawData.Add(0x00);
- }
- }
- }
|