The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
20 行
387 B
20 行
387 B
4 年前
|
namespace Teknik.Configuration
|
||
7 年前
|
{
|
||
6 年前
|
public class ContactConfig
|
||
7 年前
|
{
|
||
6 年前
|
public bool Enabled { get; set; }
|
||
5 年前
|
public EmailAccount EmailAccount { get; set; }
|
||
7 年前
|
|
||
6 年前
|
public ContactConfig()
|
||
7 年前
|
{
|
||
|
SetDefaults();
|
||
|
}
|
||
|
|
||
|
public void SetDefaults()
|
||
|
{
|
||
6 年前
|
Enabled = true;
|
||
5 年前
|
EmailAccount = new EmailAccount();
|
||
7 年前
|
}
|
||
|
}
|
||
|
}
|