Replaced the `ForceToUseFakeDocument` property in `ApiOptions` with `UsePredefinedReports` to improve clarity and better align with business requirements. Updated all references in `EnvelopeReceiverPage_DxReportViewer.razor` and `ReportViewer.razor` to use the new property, ensuring consistency and maintaining functionality.
11 lines
240 B
C#
11 lines
240 B
C#
namespace EnvelopeGenerator.ReceiverUI.Options;
|
|
|
|
public class ApiOptions
|
|
{
|
|
public const string SectionName = "Api";
|
|
|
|
public string BaseUrl { get; set; } = string.Empty;
|
|
|
|
public bool UsePredefinedReports { get; set; } = false;
|
|
}
|