using System;
using System.Collections.Generic;
using System.IO;
namespace Netch
{
public static class Global
{
///
/// 版本号
///
public static readonly string VerCode = "2.0.0";
///
/// 日志记录
///
public static Tools.Logger Logger = new() { SavePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Netch.log") };
///
/// 配置文件
///
public static Models.Config.Config Config;
///
/// 节点列表
///
public static List NodeList;
///
/// 模式列表
///
public static List ModeList;
}
}