census update

This commit is contained in:
rootdarkarchon
2023-11-17 02:06:17 +01:00
parent 1522d8d7e7
commit e9775a3677
7 changed files with 72 additions and 5 deletions

View File

@@ -31,6 +31,18 @@ public class ServerConfigurationManager
public string CurrentApiUrl => CurrentServer.ServerUri;
public ServerStorage CurrentServer => _configService.Current.ServerStorage[CurrentServerIndex];
public bool SendCensusData
{
get
{
return _configService.Current.SendCensusData;
}
set
{
_configService.Current.SendCensusData = value;
_configService.Save();
}
}
public int CurrentServerIndex
{