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.

62 lines
1.4 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.ComponentModel.DataAnnotations;
  7. namespace Wing.Model
  8. {
  9. public class WingSendTxnRequestCash
  10. {
  11. [Required]
  12. public string first_name { get; set; }
  13. [Required]
  14. public string last_name { get; set; }
  15. public string gender { get; set; }
  16. [Required]
  17. public string id_number { get; set; }
  18. [Required]
  19. public string id_type { get; set; }
  20. [Required]
  21. public string nationality { get; set; }
  22. [Required]
  23. public string date_of_birth { get; set; }
  24. [Required]
  25. public string country_of_birth { get; set; }
  26. [Required]
  27. public string occupation { get; set; }
  28. public string sender_account { get; set; }
  29. [Required]
  30. public string country_code { get; set; }
  31. [Required]
  32. public string receiver_name { get; set; }
  33. [Required]
  34. public string receiver_phone { get; set; }
  35. [Required]
  36. public decimal amount { get; set; }
  37. public string currency { get; set; }
  38. [Required]
  39. public string purpose { get; set; }
  40. public string other { get; set; }
  41. public string ext_transaction_id { get; set; }
  42. public string ext_transaction_date { get; set; }
  43. }
  44. }