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

16 lines
334 B
C#

namespace Netch.Models.Config
{
public class Generic
{
/// <summary>
/// 检查 Unstable 更新
/// </summary>
public bool Unstable = false;
/// <summary>
/// 使用 ICMP 测试延迟
/// </summary>
public bool ICMPing = true;
}
}