12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.PosModelMini
- {
- public class ClientPosTrx
- {
- public Guid? PosTrxUniqueId { get; set; }
- public DateTime RequestingCreationTimeInPosClient { get; set; }
- public PosTrxType Type { get; set; }
- public PosTrxSource Source { get; set; }
- public List<ClientRingUpPosItem> Items { get; set; }
- }
- }
|