mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:30:45 -05:00
29 lines
599 B
C#
29 lines
599 B
C#
/* ServerInfo.cs
|
|
* License: NCSA Open Source License
|
|
*
|
|
* Copyright: SPT
|
|
* AUTHORS:
|
|
*/
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace SPT.Launcher
|
|
{
|
|
public class ServerInfo
|
|
{
|
|
public string backendUrl;
|
|
public string name;
|
|
public string[] editions;
|
|
public Dictionary<string, string> profileDescriptions;
|
|
|
|
public ServerInfo()
|
|
{
|
|
backendUrl = "http://127.0.0.1:6969";
|
|
name = "Local SPT Server";
|
|
editions = new string[0];
|
|
profileDescriptions = new Dictionary<string, string>();
|
|
}
|
|
}
|
|
}
|