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.

59 lines
1.8 KiB

1 year ago
1 year ago
  1. using System.Collections.Generic;
  2. namespace Common.Model
  3. {
  4. public class KycStaticData
  5. {
  6. public List<NativeCountry> NativeCountry { get; set; }
  7. public List<City> City { get; set; }
  8. public List<Occuption> Occupation { get; set; }
  9. public List<PrimaryBank> Bank { get; set; }
  10. public List<IdType> IdType { get; set; }
  11. public List<SourceOfFund> SourceOfFund { get; set; }
  12. }
  13. public class KycStaticDataV3
  14. {
  15. public List<MonthlyIncome> MonthlyIncome { get; set; }
  16. public List<PurposeOfRegistration> purposeOfRegistration { get; set; }
  17. public List<SourceOfFund> SourceOfFund { get; set; }
  18. public List<BusniessType> BusniessType { get; set; }
  19. public List<IdType> IdType { get; set; }
  20. public List<AdditionalIdType> AdditionalIdType { get; set; }
  21. public List<VisaStatus> VisaStatus { get; set; }
  22. public List<OccupationList> OccupationList { get; set; }
  23. public PersonalInformation PersonalInformation { get; set; }
  24. public Pictures Pictures { get; set; }
  25. public List<NativeCountry> IdIssueCountry { get; set; }
  26. }
  27. public class VisaStatus
  28. {
  29. public string id { get; set; }
  30. public string text { get; set; }
  31. }
  32. public class MonthlyIncome
  33. {
  34. public string id { get; set; }
  35. public string text { get; set; }
  36. }
  37. public class BusniessType
  38. {
  39. public string id { get; set; }
  40. public string text { get; set; }
  41. }
  42. public class AdditionalIdType
  43. {
  44. public string id { get; set; }
  45. public string text { get; set; }
  46. public bool isBackRequired { get; set; }
  47. }
  48. public class OccupationList
  49. {
  50. public string id { get; set; }
  51. public string text { get; set; }
  52. }
  53. }