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.

50 lines
1.1 KiB

  1. using Common.Models.DigitalSignature;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BracBank.Model
  8. {
  9. public class AccountValidationReponse : BracApiResponse
  10. {
  11. public AccountValidationData Data { get; set; }
  12. }
  13. public class AccountValidationData
  14. {
  15. public string AccountName { get; set; }
  16. public string AccountNumber { get; set; }
  17. }
  18. public class WalletValidationReponse : BracApiResponse
  19. {
  20. public WalletValidationData Data { get; set; }
  21. }
  22. public class WalletValidationData
  23. {
  24. public string WalletNo { get; set; }
  25. public string WalletName { get; set; }
  26. public string MNOResponse { get; set; }
  27. public string WalletStatusCode { get; set; }
  28. public string WalletStatusDescription { get; set; }
  29. }
  30. public class AccountBalanceReponse : BracApiResponse
  31. {
  32. public AccountBalanceData Data { get; set; }
  33. }
  34. public class AccountBalanceData
  35. {
  36. public string AccountBalance { get; set; }
  37. }
  38. }