mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-10 13:23:18 +00:00
11 lines
282 B
TypeScript
11 lines
282 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;
|
|
}
|
|
}
|