12 lines
270 B
TypeScript
12 lines
270 B
TypeScript
export interface CharacterTexture {
|
|
id: number,
|
|
level: number,
|
|
url: string,
|
|
rights: string
|
|
}
|
|
|
|
export class LocalUser {
|
|
constructor(public readonly uuid:string, public readonly jwtToken: string, public readonly textures: CharacterTexture[]) {
|
|
}
|
|
}
|