20 lines
604 B
C#
20 lines
604 B
C#
using MareSynchronos.MareConfiguration.Models;
|
|
using MareSynchronos.WebAPI;
|
|
|
|
namespace MareSynchronos.MareConfiguration.Configurations;
|
|
|
|
[Serializable]
|
|
public class ServerConfig : IMareConfiguration
|
|
{
|
|
public int CurrentServer { get; set; } = 0;
|
|
|
|
public List<ServerStorage> ServerStorage { get; set; } = new()
|
|
{
|
|
{ new ServerStorage() { ServerName = ApiController.MainServer, ServerUri = ApiController.MainServiceUri } },
|
|
};
|
|
|
|
public bool SendCensusData { get; set; } = true;
|
|
public bool ShownCensusPopup { get; set; } = false;
|
|
|
|
public int Version { get; set; } = 1;
|
|
} |