namespace SSPCTester.UI.Services; /// UI 层配置:项目存储、报告路径等。 public sealed class StorageOptions { public const string SectionName = "Storage"; public string ProjectsRoot { get; set; } = ""; } public sealed class ReportOptions { public const string SectionName = "Report"; public string SavePath { get; set; } = ""; public string Format { get; set; } = "Pdf"; }