28 lines
1019 B
C#
28 lines
1019 B
C#
using System;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class EmpApiResponse
|
|
{
|
|
public string EmpCode { get; set; }
|
|
public string EmpDName { get; set; }
|
|
public string EmpFName { get; set; }
|
|
public string EmpLName { get; set; }
|
|
public string EmpEmail { get; set; }
|
|
public string EmpMobile { get; set; }
|
|
public string DepartmentName { get; set; }
|
|
public string DesignationName { get; set; }
|
|
public string VendorCode { get; set; }
|
|
public string CostCenterName { get; set; }
|
|
public string CostCenterCode { get; set; }
|
|
public string BaseStation { get; set; }
|
|
public string TypeName { get; set; }
|
|
public string GenderName { get; set; }
|
|
public string PayrollId { get; set; }
|
|
public string LineManager { get; set; }
|
|
public string Location { get; set; }
|
|
public string EmpActive { get; set; }
|
|
public string MinValue { get; set; }
|
|
public string MaxValue { get; set; }
|
|
}
|
|
} |