25 lines
538 B
C#
25 lines
538 B
C#
|
namespace HRM.BO.Configuration
|
|||
|
{
|
|||
|
public class EmployeeApiInfo
|
|||
|
{
|
|||
|
public string UserId { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class AdminPendingJob
|
|||
|
{
|
|||
|
public string Profile { get; set; }
|
|||
|
public string MedicalClaim { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class MobileAppSettings
|
|||
|
{
|
|||
|
public bool IsTestUser { get; set; }
|
|||
|
public string TestEmpID { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class FundInfo
|
|||
|
{
|
|||
|
public string FundConnection { get; set; }
|
|||
|
}
|
|||
|
}
|