SSPC-Tester/SSPCTester.UI/Services/AppOptions.cs

16 lines
428 B
C#
Raw Normal View History

namespace SSPCTester.UI.Services;
/// <summary>UI 层配置:项目存储、报告路径等。</summary>
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";
}