EchoTex_Payroll/HRM.BO/Configuration/EmployeeApiInfo.cs

25 lines
538 B
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00
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; }
}
}