PosTrxStatusEnum.cs 502 B

12345678910111213141516171819202122232425
  1. namespace Dfs.WayneChina.PosModelMini
  2. {
  3. public enum PosTrxStatus
  4. {
  5. /// <summary>
  6. /// The transaction is created and open.
  7. /// </summary>
  8. Open,
  9. /// <summary>
  10. /// The transaction is cancelled.
  11. /// </summary>
  12. Cancelled,
  13. /// <summary>
  14. /// The transaction is paid.
  15. /// </summary>
  16. Paid,
  17. /// <summary>
  18. /// The transaction is refunded.
  19. /// </summary>
  20. Refunded
  21. }
  22. }