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.
 
 
 

60 lines
1.8 KiB

using System.Collections.Generic;
namespace Common.Model
{
public class KycStaticData
{
public List<NativeCountry> NativeCountry { get; set; }
public List<City> City { get; set; }
public List<Occuption> Occupation { get; set; }
public List<PrimaryBank> Bank { get; set; }
public List<IdType> IdType { get; set; }
public List<SourceOfFund> SourceOfFund { get; set; }
}
public class KycStaticDataV3
{
public List<MonthlyIncome> MonthlyIncome { get; set; }
public List<PurposeOfRegistration> purposeOfRegistration { get; set; }
public List<SourceOfFund> SourceOfFund { get; set; }
public List<BusniessType> BusniessType { get; set; }
public List<IdType> IdType { get; set; }
public List<AdditionalIdType> AdditionalIdType { get; set; }
public List<VisaStatus> VisaStatus { get; set; }
public List<OccupationList> OccupationList { get; set; }
public PersonalInformation PersonalInformation { get; set; }
public Pictures Pictures { get; set; }
public List<NativeCountry> 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; }
}
}