RouterObject.ets 166 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 export class RouterObject{ userId:string = "" index:number = 0; constructor(userId:string,index:number) { this.userId = userId this.index = index } }