using System.Collections.Generic; namespace BuddyFinance.Integration.Models.Lookups { public class RegisterListsResult : BaseResult { } public class RegisterLists { public List ProfileTypeList { get; set; } public List CountryList { get; set; } public List EthnicityTypeList { get; set; } public List ProvincesList { get; set; } public List SourceOfIncomeList { get; set; } public List IdentificationTypeList { get; set; } public List TaxIdentificationList { get; set; } public List AddressTypesList { get; set; } public List EmploymentStatusList { get; set; } public List EmploymentTypeList { get; set; } public List GenderList { get; set; } public List DocumentTypeList { get; set; } } }