You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
815 B
TypeScript
28 lines
815 B
TypeScript
export class Request {
|
|
public LanguageID: number;
|
|
public IPAdress: string;
|
|
public VersionID: number;
|
|
public Channel: number;
|
|
public isDentalAllowedBackend: boolean;
|
|
public IsIrisPrescription: boolean;
|
|
public TokenID: string;
|
|
public MobileType: string;
|
|
public BookedBy?: number;
|
|
public P_SESSION_ID: number;
|
|
public MobileNumber: string;
|
|
public LogInTokenID: string;
|
|
public P_USER_NAME: string;
|
|
public UserName: string;
|
|
|
|
public P_PASSWORD: string;
|
|
public P_MOBILE_NUMBER: string;
|
|
public P_EMAIL_ADDRESS: string;
|
|
public P_NOTIFICATION_ID: number;
|
|
public PayrollCodeStr: string;
|
|
public LegislationCodeStr: string;
|
|
|
|
// public P_LEGISLATION_CODE: string;
|
|
// public OTP_SendType: number;
|
|
// public IsMobileFingerPrint: boolean;
|
|
}
|