LMS.service/LMS.Repository/DTO/UserDto/UserCollectionDto.cs

20 lines
505 B
C#

namespace LMS.Repository.DTO.UserDto
{
public class UserCollectionDto : UserBaseDto
{
public List<string> RoleNames { get; set; } = [];
public DateTime CreatedDate { get; set; }
public DateTime LastLoginDate { get; set; }
public long ParentId { get; set; }
public string LastLoginIp { get; set; } = string.Empty;
public string LastLoginDevice { get; set; } = string.Empty;
public string Remark { get; set; } = string.Empty;
}
}