1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00
Files
browser/src/models/request/updateProfileRequest.ts
Kyle Spearrin d98aeab0c8 put profile
2018-06-20 23:40:59 -04:00

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