12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using MTWorkHR.Core.Entities.Base;
- namespace MTWorkHR.Core.Entities
- {
- public class ServiceCertificate : Entity
- {
- 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; }
- }
- }
|