1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 11:03:54 +00:00

add/edit login totp key

This commit is contained in:
Kyle Spearrin
2017-07-13 11:52:24 -04:00
parent 4c4996ee2a
commit 65168c71c0
16 changed files with 260 additions and 173 deletions

View File

@@ -11,6 +11,7 @@
Username = login.Username?.EncryptedString;
Password = login.Password?.EncryptedString;
Notes = login.Notes?.EncryptedString;
Totp = login.Totp?.EncryptedString;
Favorite = login.Favorite;
}
@@ -21,6 +22,7 @@
public string Username { get; set; }
public string Password { get; set; }
public string Notes { get; set; }
public string Totp { get; set; }
public bool Favorite { get; set; }
}
}