UserBasicInfoDto.cs 908 B

1234567891011121314151617181920212223242526272829303132333435
  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 UserBasicInfoDto
  12. {
  13. public string? Id { get; set; }
  14. public string FirstName { get; set; }
  15. public DateTime DateOfBirth { get; set; }
  16. public string IdNumber { get; set; }
  17. public string LastName { get; set; }
  18. public string Email { get; set; }
  19. public string? FavoriteName { get; set; }
  20. public string PhoneNumber { get; set; }
  21. public UserTypeEnum UserType { get; set; }
  22. public string? Position { get; set; }
  23. public long? CompanyId { get; set; }
  24. public IFormFile? ProfileImage { get; set; }
  25. }
  26. }