Employee.cs 210 B

1234567891011
  1. using MTWorkHR.Core.Entities.Base;
  2. namespace MTWorkHR.Core.Entities
  3. {
  4. public class Employee : AuditEntity
  5. {
  6. public string Name { get; set; }
  7. public string Type { get; set; }
  8. }
  9. }