mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-30 13:03:53 +01:00
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
export class MenuUpdateRequest {
|
|
hideChangeMasterPassword: boolean;
|
|
activeUserId: string;
|
|
accounts: { [userId: string]: MenuAccount };
|
|
}
|
|
|
|
export class MenuAccount {
|
|
isAuthenticated: boolean;
|
|
isLocked: boolean;
|
|
userId: string;
|
|
email: string;
|
|
}
|