using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BuddyFinance.Integration.Models.Profiles { public class ProfileDetails { public int ProfileId { get; set; } public int ProfileTypeId { get; set; } public bool? LendServiceAccount { get; set; } public bool? BorrowServiceAccount { 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 int? CountryOfBirthId { get; set; } public int? EthnicityId { get; set; } public int? IdentificationTypeId { get; set; } public string IdentificationNumber { get; set; } public int? SourceOfIncomeId { get; set; } public string OtherSourceOfIncome { get; set; } } }