EmployeeDto.cs 604 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using MTWorkHR.Core.Global;
  8. namespace MTWorkHR.Application.Models
  9. {
  10. public class EmployeeDto
  11. {
  12. public string? Id { get; set; }
  13. public string? EmployeeName { get; set; }
  14. public string? FirstName { get; set; }
  15. public string? LastName { get; set; }
  16. public string? Email { get; set; }
  17. public string? Position { get; set; }
  18. public string? ProfileImagePath { get; set; }
  19. }
  20. }