1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Configuration/ContactConfig.cs

20 lines
387 B
C#
Raw Permalink Normal View History

namespace Teknik.Configuration
{
2016-01-28 08:43:41 +01:00
public class ContactConfig
{
public bool Enabled { get; set; }
public EmailAccount EmailAccount { get; set; }
2016-01-28 08:43:41 +01:00
public ContactConfig()
{
SetDefaults();
}
public void SetDefaults()
{
Enabled = true;
EmailAccount = new EmailAccount();
}
}
}