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

32 lines
682 B
C#
Raw Normal View History

2016-01-28 08:43:41 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Teknik.Configuration
{
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 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;
}
}
}