Files
dotnet-template/MainProject/Models/Database/SqlServer/PermissionSystem.cs
Caterina Simona Pastore 79549bea05 Sprint 5 (#28)
2025-05-28 00:10:38 +02:00

11 lines
296 B
C#

using System.ComponentModel.DataAnnotations;
namespace BasicDotnetTemplate.MainProject.Models.Database.SqlServer
{
public class PermissionSystem : Base
{
[MaxLength(100)]
public required string Name { get; set; }
public required bool Enabled { get; set; }
}
}