namespace AuroraDesk.Infrastructure.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;
}