22 lines
476 B
C#
Raw Permalink Normal View History

2024-10-13 17:04:47 +08:00
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;
}
}