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,4 +1,5 @@
using DotBased.ASP.Auth.Domains.Auth;
using DotBased.Objects;
namespace DotBased.ASP.Auth.Domains.Identity;
@@ -8,4 +9,5 @@ public class GroupModel
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public List<RoleModel> Roles { get; set; } = [];
public List<DbObjectAttribute<IConvertible>> Attributes { get; set; } = [];
}