using MTWorkHR.Core.Entities.Base; namespace MTWorkHR.Core.Entities { public class Employee : AuditEntity { public string Name { get; set; } public string Type { get; set; } } }