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.

41 lines
1.2 KiB

  1. namespace CustomerOnlineRemit.Common.Model.Customer
  2. {
  3. public class CustomerModel
  4. {
  5. public string? Id { get; set; }
  6. public string? Name { get; set; }
  7. public string? Country { get; set; }
  8. public string? TransactionType { get; set; }
  9. }
  10. public class ReceiverModel
  11. {
  12. public string? Id { get; set; }
  13. public string? Name { get; set; }
  14. public string? Country { get; set; }
  15. public string? Mobile { get; set; }
  16. public string? TransactionType { get; set; }
  17. }
  18. public class CustomerReceiverModel : CommonResponse
  19. {
  20. public List<ReceiverModel> ReceiverModel { get; set; }
  21. }
  22. public class CustomerTransactionList : CommonResponse
  23. {
  24. public List<CustomerTransaction> CustomerTransaction { get; set; }
  25. }
  26. public class CustomerTransaction
  27. {
  28. public string? Id { get; set; }
  29. public string? TransactionMonth { get; set; }
  30. public string? TransactionDay { get; set; }
  31. public string? PaymentMethod { get; set; }
  32. public string? PBankName { get; set; }
  33. public string? Amount { get; set; }
  34. public string? Status { get; set; }
  35. public string? PCurrency { get; set; }
  36. }
  37. }