bitwarden-estensione-browser/libs/common/src/models/request/updateProfileRequest.ts

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;
}
}