2024-11-13 14:00:39 +08:00
|
|
|
|
using Microsoft.AspNetCore.Identity;
|
2024-10-13 17:04:47 +08:00
|
|
|
|
|
|
|
|
|
|
namespace LMS.Repository.Models.DB
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Role : IdentityRole<long>
|
|
|
|
|
|
{
|
|
|
|
|
|
public long CreatedUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long UpdatedUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string? Remark { get; set; } = string.Empty;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|