18 lines
395 B
C#

using Microsoft.AspNetCore.Identity;
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;
}
}