12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.PosModelMini
- {
- public enum PosTrxType
- {
-
-
-
- Sale,
-
-
-
- Refund,
-
-
-
- Reconciliation,
-
-
-
- Redemption,
-
-
-
- LogOff,
-
-
-
- LogOn,
-
-
-
- EndOfShift,
-
-
-
- EndOfDay
- }
- }
|