mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
12 lines
247 B
C#
12 lines
247 B
C#
namespace Netch.Models.Config
|
|
{
|
|
public class STUN
|
|
{
|
|
/// <summary>
|
|
/// 主机名
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("host")]
|
|
public string Host = "stun.ekiga.net";
|
|
}
|
|
}
|