workadventure/front/src/Connexion/LocalUser.ts

12 lines
270 B
TypeScript
Raw Normal View History

2020-10-20 16:39:23 +02:00
export interface CharacterTexture {
id: number,
level: number,
url: string,
rights: string
}
export class LocalUser {
2020-10-20 16:39:23 +02:00
constructor(public readonly uuid:string, public readonly jwtToken: string, public readonly textures: CharacterTexture[]) {
}
2020-10-20 16:39:23 +02:00
}