New: IReportUI zum Bereitstellen einer Razor Komponente über Microsoft.DI, welche dann von anderen Modulen importiert werden können.

This commit is contained in:
2026-02-13 18:50:41 +01:00
parent c469ba486f
commit 88b676ab80

7
Interfaces/IReportUI.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace Interfaces;
public interface IReportUI
{
Type ReportType { get; }
IReportable ReportableEntity { get; set; }
}