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

11 lines
343 B
C#
Raw Normal View History

2024-07-07 17:41:54 +02:00
using DotBased.ASP.Auth.Domains.Auth;
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; } = [];
}