EchoTex_Payroll/HRM.UI/Controllers/MobileAPI/Models/EmployeeTModel.cs
2024-10-14 10:01:49 +06:00

24 lines
545 B
C#

using HRM.BO;
namespace HRM.UI.MODELS
{
public class EmployeeTModel : AuditTrailBase
{
public EmployeeTModel()
{
EmployeeNO = string.Empty;
Name = string.Empty;
Designation = string.Empty;
Department = string.Empty;
Grade = string.Empty;
}
public int EmployeeID { get; set; }
public string EmployeeNO { get; set; }
public string Name { get; set; }
public string Designation { get; set; }
public string Department { get; set; }
public string Grade { get; set; }
}
}