16 lines
428 B
C#
16 lines
428 B
C#
|
|
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";
|
||
|
|
}
|