using System.Collections.Generic; namespace Common.Model { public class KycStaticData { public List NativeCountry { get; set; } public List City { get; set; } public List Occupation { get; set; } public List Bank { get; set; } public List IdType { get; set; } public List SourceOfFund { get; set; } } public class KycStaticDataV3 { public List MonthlyIncome { get; set; } public List purposeOfRegistration { get; set; } public List SourceOfFund { get; set; } public List BusniessType { get; set; } public List IdType { get; set; } public List AdditionalIdType { get; set; } public List VisaStatus { get; set; } public List OccupationList { get; set; } public PersonalInformation PersonalInformation { get; set; } public Pictures Pictures { get; set; } public List IdIssueCountry { get; set; } } public class VisaStatus { public string id { get; set; } public string text { get; set; } } public class MonthlyIncome { public string id { get; set; } public string text { get; set; } } public class BusniessType { public string id { get; set; } public string text { get; set; } } public class AdditionalIdType { public string id { get; set; } public string text { get; set; } public bool isBackRequired { get; set; } } public class OccupationList { public string id { get; set; } public string text { get; set; } } }