New: Report-System using globally available Interfaces.

This commit is contained in:
2026-02-12 19:01:30 +01:00
parent a94527f294
commit 28925a3cfa
21 changed files with 847 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.ComponentModel.DataAnnotations;
using Oqtane.Models;
namespace SZUAbsolventenverein.Module.ReportSystem.Models;
public class Reporting : IAuditable
{
[Key]
public int ReportingID { get; set; }
public int ModuleId { get; set; }
public int EntityId { get; set; }
public string Note { get; set; }
public string Reason { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
}