mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
First functionnal read-only version!
Entry page now shows password information
This commit is contained in:
@@ -7,6 +7,7 @@ namespace ModernKeePass.ViewModels
|
||||
{
|
||||
public string Title { get; private set; }
|
||||
public string UserName { get; private set; }
|
||||
public string Password { get; private set; }
|
||||
public string URL { get; private set; }
|
||||
public string Notes { get; private set; }
|
||||
|
||||
@@ -15,6 +16,7 @@ namespace ModernKeePass.ViewModels
|
||||
{
|
||||
Title = entry.Strings.GetSafe(PwDefs.TitleField).ReadString();
|
||||
UserName = entry.Strings.GetSafe(PwDefs.UserNameField).ReadString();
|
||||
Password = entry.Strings.GetSafe(PwDefs.PasswordField).ReadString();
|
||||
URL = entry.Strings.GetSafe(PwDefs.UrlField).ReadString();
|
||||
Notes = entry.Strings.GetSafe(PwDefs.NotesField).ReadString();
|
||||
}
|
||||
|
Reference in New Issue
Block a user