using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Yavsc.Models.Relationship { /// /// Well defined postal adress /// public class PostalAddress { [Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)] public long Id { get; set; } public string Street1 { get; set; } public string Street2 { get; set; } public string PostalCode { get; set; } public string City { get; set; } public string State { get; set; } public string Province { get; set; } public string Country { get; set; } } }