using Microsoft.AspNetCore.Identity; namespace Fengling.AuthService.Models; public class ApplicationRole : IdentityRole { public string? Description { get; set; } public DateTime CreatedTime { get; set; } = DateTime.UtcNow; }