//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace BuddyFinance.Model
{
using System;
using System.Collections.Generic;
public partial class ProfileAddress
{
public int Id { get; set; }
public int ProfileId { get; set; }
public int AddressTypeId { get; set; }
public string Line1 { get; set; }
public string Line2 { get; set; }
public string City { get; set; }
public string PostalCode { get; set; }
public Nullable ProvinceId { get; set; }
public Nullable CountryId { get; set; }
public bool IsDeleted { get; set; }
public virtual AddressType AddressType { get; set; }
public virtual Country Country { get; set; }
public virtual Profile Profile { get; set; }
public virtual Province Province { get; set; }
}
}