14 lines
421 B
C#
14 lines
421 B
C#
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; }
|
|
}
|
|
}
|