d331d998c0
Cleaned up WebService class and shutdown reimped stats and topstats moved things out of stats into main code
20 lines
458 B
C#
20 lines
458 B
C#
using SharedLibrary.Interfaces;
|
|
|
|
namespace SharedLibrary
|
|
{
|
|
public class ServerConfiguration : Serialize<ServerConfiguration>
|
|
{
|
|
public string IP;
|
|
public int Port;
|
|
public string Password;
|
|
public string FtpPrefix;
|
|
public bool AllowMultipleOwners;
|
|
public bool AllowTrustedRank;
|
|
|
|
public override string Filename()
|
|
{
|
|
return $"config/servers/{IP}_{Port}.cfg";
|
|
}
|
|
}
|
|
}
|