using Microsoft.AspNetCore.Identity; using StackExchange.Redis; namespace GamificationService.Models.Database; public class ApplicationRole : IdentityRole { public ApplicationRole() : base() { } public ApplicationRole(string roleName) : base(roleName) { } public string? Description { get; set; } public List UserRoles { get; set; } = new List(); public List RoleRights { get; set; } = new List(); }