GoHR_MobileApp_API/Models/MobileApiDetails.cs

14 lines
421 B
C#
Raw Permalink Normal View History

2026-03-24 14:21:50 +06:00
namespace cel.hrm.mobile.api.Models
{
public class MobileApiDetails
{
public int EmpID { get; set; }
public string? EmpNo { get; set; }
public string? EmailAddress { get; set; }
public string? VersionNumber { get; set; }
public string? DeviceID { get; set; }
public string? ConnectionString { get; set; }
public string? CompanyName { get; set; }
}
}