This commit is contained in:
2017-06-08 17:09:06 +02:00
parent a5286af1e5
commit e95de6a9c3
18 changed files with 193 additions and 114 deletions

View File

@ -0,0 +1,14 @@
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; }
}
}