1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

put profile

This commit is contained in:
Kyle Spearrin
2018-06-20 23:40:59 -04:00
parent 6e501dddb9
commit d98aeab0c8
3 changed files with 37 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
export class UpdateProfileRequest {
name: string;
masterPasswordHint: string;
culture = 'en-US'; // deprecated
constructor(name: string, masterPasswordHint: string) {
this.name = name;
this.masterPasswordHint = masterPasswordHint ? masterPasswordHint : null;
}
}