Refactor: Replace ForceToUseFakeDocument property

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.
This commit is contained in:
2026-06-11 13:07:17 +02:00
parent b16ae70762
commit e093471a24
3 changed files with 3 additions and 3 deletions

View File

@@ -6,5 +6,5 @@ public class ApiOptions
public string BaseUrl { get; set; } = string.Empty;
public bool ForceToUseFakeDocument { get; set; } = false;
public bool UsePredefinedReports { get; set; } = false;
}