Merge net 10.0 into config from ef

This commit is contained in:
2025-11-27 12:49:36 +01:00
committed by KoCoder
parent a94527f294
commit fc92dd48e3
22 changed files with 377 additions and 47 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Oqtane.Models;
namespace SZUAbsolventenverein.Module.AdminModules.Models
{
[Table("SZUAbsolventenvereinAdminSettings")]
public class AdminSetting
{
[Key]
public int AdminSettingsId { get; set; }
public int ModuleId { get; set; }
public int TokenLifeTimeInDays { get; set; }
}
}