using LMS.Repository.DTO.UserDto; namespace LMS.Repository.DTO { public class RoleDto { public long Id { get; set; } public string Name { get; set; } = string.Empty; public UserBaseDto? CreatedUser { get; set; } public UserBaseDto? UpdeatedUser { get; set; } public DateTime CreatedTime { get; set; } public DateTime UpdatedTime { get; set; } public string Remark { get; set; } = string.Empty; } }