fengling-platform/Fengling.Platform.Domain/AggregatesModel/RoleAggregate/ApplicationRole.cs
2026-02-21 15:05:37 +08:00

14 lines
456 B
C#

using Microsoft.AspNetCore.Identity;
namespace Fengling.Platform.Domain.AggregatesModel.RoleAggregate;
public class ApplicationRole : IdentityRole<long>
{
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<string>? Permissions { get; set; }
}