namespace PersonalToolBox.Models;
///
/// 应用全局配置,对应 config.json 的顶层结构
///
public class AppConfig
{
///
/// 主题模式 (Dark / Light)
///
public string Theme { get; set; } = "Dark";
///
/// 是否开机自启动
///
public bool AutoStart { get; set; } = false;
///
/// 工具分类列表
///
public List Categories { get; set; } = new();
///
/// 工具项列表
///
public List Tools { get; set; } = new();
}