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