using Microsoft.AspNetCore.Identity; namespace Fengling.Platform.Domain.AggregatesModel.RoleAggregate; public class ApplicationRole : IdentityRole { public string? Description { get; set; } public DateTimeOffset CreatedTime { get; set; } = DateTimeOffset.UtcNow; public long? TenantId { get; set; } public bool IsSystem { get; set; } public string? DisplayName { get; set; } public List? Permissions { get; set; } }