using System.Collections.Generic; using Microsoft.AspNetCore.Identity; namespace Kavita.Models.Entities.User; public class AppRole : IdentityRole { public ICollection UserRoles { get; set; } = null!; }