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