using Microsoft.AspNetCore.Identity; namespace Fengling.Console.Models.Entities; public class ApplicationRole : IdentityRole { public string? Description { get; set; } public DateTime CreatedTime { get; set; } = DateTime.UtcNow; public int? TenantId { get; set; } public bool IsSystem { get; set; } public string? DisplayName { get; set; } public List? Permissions { get; set; } }