EchoTex_Payroll/HRM.BO/Configuration/EmployeeApiInfo.cs
2024-10-14 10:01:49 +06:00

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; }
}
}