mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
20 lines
387 B
C#
20 lines
387 B
C#
namespace Teknik.Configuration
|
|
{
|
|
public class ContactConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public EmailAccount EmailAccount { get; set; }
|
|
|
|
public ContactConfig()
|
|
{
|
|
SetDefaults();
|
|
}
|
|
|
|
public void SetDefaults()
|
|
{
|
|
Enabled = true;
|
|
EmailAccount = new EmailAccount();
|
|
}
|
|
}
|
|
}
|