mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
18 lines
406 B
C#
18 lines
406 B
C#
using Aki.Launcher;
|
|
|
|
namespace Aki.Launcher.Models.Aki
|
|
{
|
|
public class AkiEdition
|
|
{
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public AkiEdition(string name)
|
|
{
|
|
Name = name;
|
|
ServerManager.SelectedServer.profileDescriptions.TryGetValue(name, out string desc);
|
|
Description = desc;
|
|
}
|
|
}
|
|
}
|