This commit is contained in:
Paul Schneider 2017-06-08 17:09:06 +02:00
commit 63eb7089cd
18 changed files with 193 additions and 114 deletions

View file

@ -1,9 +1,13 @@
using Yavsc.Models.Relationship;
namespace Yavsc
{
public class EmailEntry
public class Contact
{
public string Name { get; set; }
public string Address { get; set; }
public string EMail { get; set; }
public PostalAddress PostalAddress { get; set; }
}