From 831e9fd8eb1c2a3ab2d8ec0c1e0c3fccfd4528e4 Mon Sep 17 00:00:00 2001 From: KoCoder Date: Sun, 15 Feb 2026 22:22:17 +0100 Subject: [PATCH] Add UserName to IReportable.cs --- Interfaces/IReportable.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Interfaces/IReportable.cs b/Interfaces/IReportable.cs index b5bc9e2..43fdea3 100644 --- a/Interfaces/IReportable.cs +++ b/Interfaces/IReportable.cs @@ -24,4 +24,9 @@ public interface IReportable /// The ID of an Entity that is beeing reported. This is used to determine the exact entity being reported. /// public int EntityID { get; } + + /// + /// The UserName of the user who published the Entity (and who should be held accountible for that Entity). + /// + public string UserName { get; } } \ No newline at end of file