The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
21 行
390 B
21 行
390 B
4 年前
|
namespace Teknik.Configuration
|
||
5 年前
|
{
|
||
|
public class IRCConfig
|
||
|
{
|
||
|
public bool Enabled { get; set; }
|
||
|
|
||
|
public string Host { get; set; }
|
||
|
|
||
|
public int Port { get; set; }
|
||
|
|
||
|
public int MaxMessageLength { get; set; }
|
||
|
|
||
|
public IRCConfig()
|
||
|
{
|
||
|
Host = string.Empty;
|
||
|
Port = 0;
|
||
|
MaxMessageLength = 400;
|
||
|
}
|
||
|
}
|
||
|
}
|