yavsc/src/Yavsc.Server/Models/Relationship/StaticContact.cs
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

12 lines
203 B
C#

namespace Yavsc.Models.Relationship
{
public class StaticContact
{
public string Name { get; set; }
public string EMail { get; set; }
public PostalAddress? PostalAddress { get; set; }
}
}