1 Commits

Author SHA1 Message Date
3cc6eba28e New: Construct Parameter List
All checks were successful
release-nuget-package / Release NuGet Package (push) Successful in 42s
2026-02-19 17:49:19 +01:00

View File

@@ -17,4 +17,12 @@ public interface IReportUI
/// The reportable Entity that is being reported.
/// </summary>
IReportable ReportableEntity { get; set; }
/// <summary>
/// Constructs a list of parameters to be passed to the component.
/// </summary>
/// <param name="reportableEntity">The entity to be reported.</param>
/// <param name="RenderModeBoundary">The render mode boundary.</param>
/// <returns>A dictionary of parameters. For </returns>
Dictionary<string, object> ConstructParameterList(IReportable reportableEntity, object RenderModeBoundary);
}