Files
netch/Netch/Models/Config/STUN.cs
2021-06-15 21:44:03 +08:00

12 lines
247 B
C#

namespace Netch.Models.Config
{
public class STUN
{
/// <summary>
/// 主机名
/// </summary>
[Newtonsoft.Json.JsonProperty("host")]
public string Host = "stun.ekiga.net";
}
}