0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:50:43 -05:00

18 lines
406 B
C#
Raw Normal View History

2024-05-21 20:15:19 +01:00
using SPT.Launcher;
2024-05-21 20:15:19 +01:00
namespace SPT.Launcher.Models.SPT
{
2024-05-21 20:15:19 +01:00
public class SPTEdition
{
public string Name { get; set; }
public string Description { get; set; }
2024-05-21 20:15:19 +01:00
public SPTEdition(string name)
{
Name = name;
ServerManager.SelectedServer.profileDescriptions.TryGetValue(name, out string desc);
Description = desc;
}
}
}