yavsc/Yavsc.Server/Settings/EmailEntry.cs

14 lines
235 B
C#
Raw Normal View History

2017-06-08 17:09:06 +02:00
using Yavsc.Models.Relationship;
2016-05-17 18:22:18 +02:00
namespace Yavsc
{
2017-06-08 17:09:06 +02:00
public class Contact
2016-05-17 18:22:18 +02:00
{
public string Name { get; set; }
2017-06-08 17:09:06 +02:00
public string EMail { get; set; }
public PostalAddress PostalAddress { get; set; }
2016-05-17 18:22:18 +02:00
}
}