2023-03-03 19:25:33 +00:00
|
|
|
/* ServerInfo.cs
|
|
|
|
* License: NCSA Open Source License
|
|
|
|
*
|
2024-05-21 20:15:19 +01:00
|
|
|
* Copyright: SPT
|
2023-03-03 19:25:33 +00:00
|
|
|
* AUTHORS:
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2023-03-15 19:34:29 -04:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2024-05-21 20:15:19 +01:00
|
|
|
namespace SPT.Launcher
|
2023-03-03 19:25:33 +00:00
|
|
|
{
|
|
|
|
public class ServerInfo
|
|
|
|
{
|
|
|
|
public string backendUrl;
|
|
|
|
public string name;
|
|
|
|
public string[] editions;
|
2023-03-15 19:34:29 -04:00
|
|
|
public Dictionary<string, string> profileDescriptions;
|
2023-03-03 19:25:33 +00:00
|
|
|
|
|
|
|
public ServerInfo()
|
|
|
|
{
|
|
|
|
backendUrl = "http://127.0.0.1:6969";
|
2024-05-21 20:15:19 +01:00
|
|
|
name = "Local SPT Server";
|
2023-03-03 19:25:33 +00:00
|
|
|
editions = new string[0];
|
2023-03-15 19:34:29 -04:00
|
|
|
profileDescriptions = new Dictionary<string, string>();
|
2023-03-03 19:25:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|