Esempio n. 1
0
 public Accounts(JsonObject root)
 {
     IPGW = new PasswordVault(root.GetObject("IPGW"));
     AAO  = new PasswordVault(root.GetObject("AAO"));
 }
Esempio n. 2
0
 public void Clear()
 {
     IPGW = new PasswordVault();
     AAO  = new PasswordVault();
 }
Esempio n. 3
0
 public Accounts()
 {
     IPGW = new PasswordVault();
     AAO  = new PasswordVault();
 }