UserAllDto.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using MTWorkHR.Core.Entities;
  2. using MTWorkHR.Core.Global;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace MTWorkHR.Application.Models
  10. {
  11. public class UserAllDto
  12. {
  13. public string? Id { get; set; }
  14. public string UserName { get; set; }
  15. public string FirstName { get; set; }
  16. public string LastName { get; set; }
  17. public string FavoriteName { get; set; }
  18. public string PhoneNumber { get; set; }
  19. public string Email { get; set; }
  20. public string? ManagerId { get; set; }
  21. public string ManagerName { get; set; }
  22. public string UniversityName { get; set; }
  23. public string QualificationName { get; set; }
  24. public string JobTitleName { get; set; }
  25. public string IndustryName { get; set; }
  26. public string CountryName { get; set; }
  27. public long? QualificationId { get; set; }
  28. public long? UniversityId { get; set; }
  29. public long? JobTitleId { get; set; }
  30. public long? IndustryId { get; set; }
  31. public long? CountryId { get; set; }
  32. public bool IsStopped { get; set; }
  33. public string? Position { get; set; }
  34. public long? CompanyId { get; set; }
  35. public UserTypeEnum UserType { get; set; }
  36. }
  37. }