mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
16 lines
334 B
C#
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;
|
|
}
|
|
}
|