New: Interfaces 0.0.0-12 way of doing reporting

This commit is contained in:
2026-02-19 19:40:02 +01:00
parent 1f443b2734
commit 3ddce62f54
4 changed files with 31 additions and 37 deletions

View File

@@ -12,6 +12,7 @@ namespace SZUAbsolventenverein.Module.BlackBoard.Models
public int BlackBoardId { get; set; }
public int ModuleId { get; set; }
public string Name { get; set; }
public int ImageID { get; set; }
[NotMapped]
public string ModuleName => "BlackBoard";
@@ -19,5 +20,7 @@ namespace SZUAbsolventenverein.Module.BlackBoard.Models
public int ModuleID => ModuleId;
[NotMapped]
public int EntityID => BlackBoardId;
[NotMapped] public string UserName => CreatedBy;
}
}