mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
30 lines
709 B
C#
30 lines
709 B
C#
namespace Teknik.Configuration
|
|
{
|
|
public class EmailConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public string Username { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public string Domain { get; set; }
|
|
|
|
public string MailHost { get; set; }
|
|
|
|
public int MaxSize { get; set; }
|
|
|
|
public DatabaseConfig CounterDatabase { get; set; }
|
|
|
|
public EmailConfig()
|
|
{
|
|
Enabled = true;
|
|
Username = string.Empty;
|
|
Password = string.Empty;
|
|
Domain = string.Empty;
|
|
MailHost = string.Empty;
|
|
MaxSize = 1000;
|
|
CounterDatabase = new DatabaseConfig();
|
|
}
|
|
}
|
|
} |