You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB

1 year ago
1 year ago
  1. namespace Common.Model
  2. {
  3. public class TranHistoryResponse
  4. {
  5. private string _paidDate = null;
  6. public string User { get; set; }
  7. public string TranId { get; set; }
  8. public string ControlNo { get; set; }
  9. public string PayoutAmt { get; set; }
  10. public string PCurr { get; set; }
  11. public string CollAmt { get; set; }
  12. public string CollCurr { get; set; }
  13. public string PayStatus { get; set; }
  14. public string PayoutMode { get; set; }
  15. public string SendDate { get; set; }
  16. public string PaidDate
  17. {
  18. get
  19. {
  20. return _paidDate;
  21. }
  22. set
  23. {
  24. _paidDate = value;
  25. }
  26. }
  27. public string PayoutAgent { get; set; }
  28. public string DisplayActions { get; set; }
  29. public string ColorIcon { get; set; }
  30. public string ColorCode { get; set; }
  31. public string TextCode { get; set; }
  32. public string ReceiverId { get; set; }
  33. }
  34. }