yavsc/src/Yavsc.Server/Models/Relationship/StaticContact.cs

12 lines
203 B
C#
Raw Normal View History

2024-11-06 13:00:34 +00:00
namespace Yavsc.Models.Relationship
{
public class StaticContact
{
public string Name { get; set; }
public string EMail { get; set; }
public PostalAddress? PostalAddress { get; set; }
}
}