10 lines
260 B
TypeScript
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;
|
|
}
|
|
} |