EmployeeInfoDto.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using Microsoft.AspNetCore.Http;
  2. using MTWorkHR.Core.Global;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace MTWorkHR.Application.Models
  10. {
  11. public class EmployeeInfoDto
  12. {
  13. public string? Id { get; set; }
  14. public string FirstName { get; set; }
  15. public DateTime DateOfBirth { get; set; }
  16. public string LastName { get; set; }
  17. public string Email { get; set; }
  18. public string? FavoriteName { get; set; }
  19. public string PhoneNumber { get; set; }
  20. public UserTypeEnum UserType { get; set; }
  21. //------------Education
  22. public string? Position { get; set; }
  23. public string? QualificationName { get; set; }
  24. public string? UniversityName { get; set; }
  25. public string? JobTitleName { get; set; }
  26. public string? IndustryName { get; set; }
  27. public long? CompanyId { get; set; }
  28. //-------------------Attachments
  29. public string? ProfileImagePath { get; set; }
  30. public IFormFile? ProfileImage { get; set; }
  31. public IFormFile? CVAttach { get; set; }
  32. public IFormFile? ExperienceCertificateAttach { get; set; }
  33. public IFormFile? ProfCertificateAttach { get; set; }
  34. //------------------------Address
  35. public EmployeeAddressDto? UserAddress { get; set; }
  36. }
  37. }