namespace AuroraDesk.Configuration; /// /// 搴旂敤绋嬪簭璁剧疆 /// public class AppSettings { public string ApplicationName { get; set; } = "My Avalonia App"; public string Version { get; set; } = "1.0.0"; public string Environment { get; set; } = "Development"; public FeatureSettings Features { get; set; } = new(); } /// /// 鍔熻兘璁剧疆 /// public class FeatureSettings { public bool EnableLogging { get; set; } = true; public bool EnableMetrics { get; set; } = false; public bool EnableTelemetry { get; set; } = false; }