14 lines
456 B
C#
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; }
|
|
}
|