Add GlobalDatabase

This commit is contained in:
JustArchi
2016-03-07 02:39:55 +01:00
parent 27254aa31e
commit 1ad5d3676f
5 changed files with 109 additions and 7 deletions

View File

@@ -34,6 +34,10 @@ namespace ArchiSteamFarm {
return _LoginKey;
}
set {
if (_LoginKey == value) {
return;
}
_LoginKey = value;
Save();
}
@@ -44,6 +48,10 @@ namespace ArchiSteamFarm {
return _SteamGuardAccount;
}
set {
if (_SteamGuardAccount == value) {
return;
}
_SteamGuardAccount = value;
Save();
}