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

30 lines
709 B
C#
Raw Normal View History

namespace Teknik.Configuration
2016-01-28 08:43:41 +01:00
{
public class EmailConfig
{
public bool Enabled { get; set; }
2016-01-28 08:43:41 +01:00
public string Username { get; set; }
public string Password { get; set; }
2016-01-28 08:47:18 +01:00
public string Domain { get; set; }
2016-01-28 21:40:51 +01:00
public string MailHost { get; set; }
2016-01-28 08:43:41 +01:00
public int MaxSize { get; set; }
public DatabaseConfig CounterDatabase { get; set; }
2016-01-28 08:43:41 +01:00
public EmailConfig()
{
Enabled = true;
2016-01-28 08:43:41 +01:00
Username = string.Empty;
Password = string.Empty;
2016-01-28 08:47:18 +01:00
Domain = string.Empty;
2016-01-28 21:40:51 +01:00
MailHost = string.Empty;
2016-01-28 08:43:41 +01:00
MaxSize = 1000;
CounterDatabase = new DatabaseConfig();
2016-01-28 08:43:41 +01:00
}
}
}