Initial Commit: BlackBoard inkl. Reporting

This commit is contained in:
2026-02-12 19:35:17 +01:00
commit 0b82942569
38 changed files with 1564 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Interfaces;
using Oqtane.Models;
namespace SZUAbsolventenverein.Module.BlackBoard.Models
{
[Table("SZUAbsolventenvereinBlackBoard")]
public class BlackBoard : ModelBase, IReportable
{
[Key]
public int BlackBoardId { get; set; }
public int ModuleId { get; set; }
public string Name { get; set; }
[NotMapped]
public string ModuleName => "BlackBoard";
[NotMapped]
public int ModuleID => ModuleId;
[NotMapped]
public int EntityID => BlackBoardId;
}
}