bitwarden-estensione-browser/libs/common/src/auth/models/request/update-profile.request.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;
}
}