Adding permissions' methods

This commit is contained in:
2025-04-26 23:40:07 +02:00
parent b778a357ba
commit 2a5d7ff5f6
12 changed files with 1959 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
using System.ComponentModel.DataAnnotations;
namespace BasicDotnetTemplate.MainProject.Models.Database.SqlServer
{
public class PermissionModule : Base
{
[MaxLength(100)]
public required string Name { get; set; }
public required bool Enabled { get; set; }
}
}