UserDto.cs 653 B

123456789101112131415161718192021222324
  1. using MTWorkHR.Core.Global;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MTWorkHR.Application.Models
  8. {
  9. public class UserDto
  10. {
  11. public string Id { get; set; }
  12. public string Email { get; set; }
  13. public string FirstName { get; set; }
  14. public string LastName { get; set; }
  15. public string PhoneNumber { get; set; }
  16. public string LinkedInLink { get; set; }
  17. public UserTypeEnum UserType { get; set; }
  18. public string UserName { get; set; }
  19. public IList<UserRoleDto>? UserRoles { get; set; }
  20. }
  21. }