From 88b676ab80f7808366a158be4733ce3751c29a3d Mon Sep 17 00:00:00 2001 From: KoCoder Date: Fri, 13 Feb 2026 18:50:41 +0100 Subject: [PATCH] =?UTF-8?q?New:=20IReportUI=20zum=20Bereitstellen=20einer?= =?UTF-8?q?=20Razor=20Komponente=20=C3=BCber=20Microsoft.DI,=20welche=20da?= =?UTF-8?q?nn=20von=20anderen=20Modulen=20importiert=20werden=20k=C3=B6nne?= =?UTF-8?q?n.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Interfaces/IReportUI.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Interfaces/IReportUI.cs diff --git a/Interfaces/IReportUI.cs b/Interfaces/IReportUI.cs new file mode 100644 index 0000000..a5c1986 --- /dev/null +++ b/Interfaces/IReportUI.cs @@ -0,0 +1,7 @@ +namespace Interfaces; + +public interface IReportUI +{ + Type ReportType { get; } + IReportable ReportableEntity { get; set; } +} \ No newline at end of file