using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BuddyFinance.Integration.Models.ManageCash { public class ManageCashModel { public int ProfileId { get; set; } public string ProfileNumber { get; set; } public ProfileType ProfileType { get; set; } public string Title { get; set; } public string Name { get; set; } public string Surname { get; set; } public string EmailAddress { get; set; } public string ContactNumber { get; set; } public DateTime DateOfBirth { get; set; } public int GenderId { get; set; } public Gender Gender { get; set; } public int CountryOfBirthId { get; set; } public Country CountryOfBirth { get; set; } public int EthnicityId { get; set; } public Ethnicity Ethnicity { get; set; } public int IdentificationTypeId { get; set; } public IdentificationType IdentificationType { get; set; } public string IdentificationNumber { get; set; } public double AvailableFunds { get; set; } public bool TaxRegistered { get; set; } public TaxInformation TaxInformation { get; set; } public int SourceOfIncomeId { get; set; } public SourceOfIncome SourceOfIncome { get; set; } public string OtherSourceOfIncome { get; set; } public FicaCompliance FicaCompliance { get; set; } public Nullable FicaComplianceId { get; set; } public BankingDetail BankingDetails { get; set; } public int EmploymentStatuId { get; set; } public EmploymentStatus EmploymentStatus { get; set; } public EmploymentDetail EmploymentDetail { get; set; } public int StatusId { get; set; } public Status ProfileStatus { get; set; } public List
Addresses { get; set; } public List Documents { get; set; } public string Otp { get; set; } } }