mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-10 09:02:50 +00:00
14 lines
295 B
TypeScript
14 lines
295 B
TypeScript
export interface UserModel {
|
|
access_token: string;
|
|
battle_net_id: number;
|
|
battletag: string;
|
|
id: number;
|
|
permissions: string;
|
|
token: string;
|
|
character_name?: string;
|
|
character_class?: string;
|
|
character_guild?: string;
|
|
character_avatar?: string;
|
|
character_realm?: string;
|
|
}
|