12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.PosModelMini
- {
- public enum PosTrxSource
- {
- /// <summary>
- /// The transaction is from indoor.
- /// </summary>
- Indoor,
- /// <summary>
- /// The transaction is from outdoor.
- /// </summary>
- Outdoor
- }
- }
|