namespace LMS.Repository.DTO.UserDto { public class UserCollectionDto : UserBaseDto { public List 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; } }