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.

24 lines
783 B

1 year ago
1 year ago
1 year ago
  1. namespace Common.Model
  2. {
  3. public class WalletStatementResponse
  4. {
  5. // public int RowId { get; set; }
  6. public string TransactionDate { get; set; }
  7. public string Particular { get; set; }
  8. public string TranId { get; set; }
  9. public string ControlNo { get; set; }
  10. public string PayoutAmt { get; set; }
  11. public string PCurr { get; set; }
  12. public string CollAmt { get; set; }
  13. public string CollCurr { get; set; }
  14. public string PayStatus { get; set; }
  15. public string PayoutMode { get; set; }
  16. public string ReceiverName { get; set; }
  17. public string PayoutCountry { get; set; }
  18. public string ColorCode { get; set; }
  19. public string TextCode { get; set; }
  20. }
  21. }