ClientPosTrx.cs 436 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.PosModelMini
  5. {
  6. public class ClientPosTrx
  7. {
  8. public Guid? PosTrxUniqueId { get; set; }
  9. public DateTime RequestingCreationTimeInPosClient { get; set; }
  10. public PosTrxType Type { get; set; }
  11. public PosTrxSource Source { get; set; }
  12. public List<ClientRingUpPosItem> Items { get; set; }
  13. }
  14. }