namespace BuddyFinance.Integration.Models { public class TaxInformation { public int ProfileId { get; set; } public int? TaxIdentificationTypeId { get; set; } public TaxIdentificationType TaxIdentificationType { get; set; } public string TaxNumber { get; set; } public int? TaxCountryId { get; set; } public Country TaxCountry { get; set; } public bool? IsTaxRegistered { get; set; } } }