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.
20 lines
673 B
TypeScript
20 lines
673 B
TypeScript
import { Response } from '../../models/response';
|
|
import { AuthenticatedUser } from './authenticated-user';
|
|
import { PrivilageModel } from './privilage-model';
|
|
export class SMSCheckResponse extends Response {
|
|
AuthenticationTokenID: string;
|
|
MemberInformationList:AuthenticatedUser[];
|
|
Privilege_List:PrivilageModel[];
|
|
public TokenID: string;
|
|
public SessionID: string;
|
|
public MobileType: string;
|
|
public BookedBy?: number;
|
|
public P_SESSION_ID: number;
|
|
public MobileNumber : string;
|
|
public LogInTokenID : string;
|
|
public CompanyImageDescription:string;
|
|
public CompanyImageURL:string;
|
|
public EMPLOYEE_MOBILE_NUMBER:string;
|
|
|
|
}
|