mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
export class UpdateProfileRequest {
|
|
name: string;
|
|
masterPasswordHint: string;
|
|
culture = 'en-US'; // deprecated
|
|
|
|
constructor(name: string, masterPasswordHint: string) {
|
|
this.name = name;
|
|
this.masterPasswordHint = masterPasswordHint ? masterPasswordHint : null;
|
|
}
|
|
}
|