23 lines
437 B
C#
23 lines
437 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Spt.Launcher;
|
|
|
|
public class LauncherV2CompatibleVersion : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
public required string SptVersion
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public required string EftVersion
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|