namespace BuddyFinance.Integration.Models { public class Address { public int AddressId { get; set; } public int AddressProfileId { get; set; } public string Line1 { get; set; } public string Line2 { get; set; } public string City { get; set; } public string PostalCode { get; set; } public int AddressTypeId { get; set; } public AddressType AddressType { get; set; } public int? ProvinceId { get; set; } public Province Province { get; set; } //public int? CountryId { get; set; } //public Country Country { get; set; } } }