using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using MTWorkHR.Application.Models; using MTWorkHR.Core.Entities; using MTWorkHR.Core.Entities.Base; using MTWorkHR.Core.Global; namespace MTWorkHR.Application.Models { public class ServiceCertificateDto : EntityDto { public string? ToWhom{ get; set; } public string? Name { get; set; } public string? Salary { get; set; } public DateTime? JoiningDate { get; set; } public DateTime? ToDate { get; set; } public string? Position { get; set; } } }