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; }
}

View file

@ -22,12 +22,12 @@ namespace Yavsc
/// Owner's email
/// </summary>
/// <returns></returns>
public EmailEntry Owner { get; set; }
public Contact Owner { get; set; }
/// <summary>
/// Administrator's email
/// </summary>
/// <returns></returns>
public EmailEntry Admin { get; set; }
public Contact Admin { get; set; }
/// <summary>
/// User's files directory
/// </summary>