21 lines
665 B
C#
21 lines
665 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Yavsc.Models.Relationship
|
|
{
|
|
/// <summary>
|
|
/// Well defined postal adress
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
} |