ServiceCertificateDto.cs 671 B

12345678910111213141516171819202122232425
  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.Application.Models;
  8. using MTWorkHR.Core.Entities;
  9. using MTWorkHR.Core.Entities.Base;
  10. using MTWorkHR.Core.Global;
  11. namespace MTWorkHR.Application.Models
  12. {
  13. public class ServiceCertificateDto : EntityDto
  14. {
  15. public string? ToWhom{ get; set; }
  16. public string? Name { get; set; }
  17. public string? Salary { get; set; }
  18. public DateTime? JoiningDate { get; set; }
  19. public DateTime? ToDate { get; set; }
  20. public string? Position { get; set; }
  21. }
  22. }