New: Report-System using globally available Interfaces.
This commit is contained in:
20
Shared/Models/ReportSystem/Reporting.cs
Normal file
20
Shared/Models/ReportSystem/Reporting.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user