TEST
This commit is contained in:
16
Shared/Models/AdminSettings.cs
Normal file
16
Shared/Models/AdminSettings.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user