Merge new changes into net10.0

This commit is contained in:
2026-02-19 17:08:34 +01:00
22 changed files with 1309 additions and 131 deletions

View File

@@ -19,6 +19,8 @@ namespace SZUAbsolventenverein.Module.HallOfFame.Models
public string Link { get; set; }
public string Status { get; set; } // "Draft" or "Published"
public int UserId { get; set; } // Owner
public bool IsReported { get; set; }
public string ReportReason { get; set; }
public string CreatedBy { get; set; }

View File

@@ -0,0 +1,21 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Oqtane.Models;
namespace SZUAbsolventenverein.Module.HallOfFame.Models
{
[Table("SZUAbsolventenvereinHallOfFameReport")]
public class HallOfFameReport : IAuditable
{
[Key]
public int HallOfFameReportId { get; set; }
public int HallOfFameId { 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; }
}
}