Files
im-system/lim-ts-sdk-master/lim-ts-sdk/src/lim/pack/LoginPack.ts
2023-09-07 00:56:03 +08:00

10 lines
260 B
TypeScript

export class LoginPack {
appId:number;
userId?: string;
clientType?: number;
constructor(appId:number,userId: string, clientType?: number) {
this.userId = userId;
this.clientType = clientType;
this.appId = appId;
}
}