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
Uncled1023 b642f01246 - Added user helper function to change the account type for a given user.
- Added item to admin page to change a user's account type.
2017-06-04 23:06:40 -07:00

35 lines
795 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 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();
}
}
}