12 lines
506 B
C#
12 lines
506 B
C#
namespace MultiWheelC.TrajectoryPlanning.PathSmoothing.Visualization;
|
|||
|
|
|
||
|
|
/// <summary>一次报告导出的共享图形模型、目标目录与精确字体要求。</summary>
|
||
|
|
public sealed class SmoothingReportExportRequest
|
||
|
|
{
|
||
|
|
public SmoothingFigureModel Model { get; set; }
|
||
|
|
public string OutputDirectory { get; set; }
|
||
|
|
public string FileStem { get; set; }
|
||
|
|
public string ChineseFontFamilyName { get; set; } = "SimSun";
|
||
|
|
public string LatinFontFamilyName { get; set; } = "Times New Roman";
|
||
|
|
}
|