DotBased/DotBased.ASP.Auth/Domains/Identity/GroupModel.cs

13 lines
447 B
C#
Raw Permalink Normal View History

2024-07-07 17:41:54 +02:00
using DotBased.ASP.Auth.Domains.Auth;
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; } = [];
public List<DbObjectAttribute<IConvertible>> Attributes { get; set; } = [];
2024-07-07 17:41:54 +02:00
}