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#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
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 EmailConfig()
{
Enabled = true;
Username = string.Empty;
Password = string.Empty;
Domain = string.Empty;
MailHost = string.Empty;
MaxSize = 1000;
}
}
}