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

27 lines
527 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Mail;
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();
}
}
}