10 lines
242 B
C#
10 lines
242 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Fengling.AuthService.Models;
|
|
|
|
public class ApplicationRole : IdentityRole<long>
|
|
{
|
|
public string? Description { get; set; }
|
|
public DateTime CreatedTime { get; set; } = DateTime.UtcNow;
|
|
}
|