using Microsoft.AspNetCore.Identity; namespace LMS.Repository.Models.DB { public class Role : IdentityRole { 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; } }