2024-07-07 17:41:54 +02:00
|
|
|
using DotBased.ASP.Auth.Domains.Auth;
|
2024-07-27 12:49:45 +02:00
|
|
|
using DotBased.Objects;
|
2024-07-07 17:41:54 +02:00
|
|
|
|
|
|
|
namespace DotBased.ASP.Auth.Domains.Identity;
|
|
|
|
|
|
|
|
public class GroupModel
|
|
|
|
{
|
|
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
public List<RoleModel> Roles { get; set; } = [];
|
2024-07-27 12:49:45 +02:00
|
|
|
public List<DbObjectAttribute<IConvertible>> Attributes { get; set; } = [];
|
2024-07-07 17:41:54 +02:00
|
|
|
}
|