yavsc/Yavsc.Server/Models/Relationship/PostalAddress.cs

14 lines
353 B
C#

namespace Yavsc.Models.Relationship
{
public class PostalAddress
{
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; }
}
}