Added ObjectAttribute interface & classes

This commit is contained in:
Max
2024-07-27 12:49:45 +02:00
parent 5341179e94
commit c7d654a0ba
7 changed files with 63 additions and 4 deletions

View File

@@ -1,3 +1,5 @@
using DotBased.Objects;
namespace DotBased.ASP.Auth.Domains.Auth;
public class RoleModel
@@ -6,4 +8,5 @@ public class RoleModel
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public List<PermissionModel> Permissions { get; set; } = [];
public List<DbObjectAttribute<IConvertible>> Attributes { get; set; } = [];
}