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