Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GameModeResponse.cs
T
2025-06-18 17:09:20 +00:00

22 lines
424 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Game;
public enum SessionMode
{
REGULAR,
PVE,
}
public record GameModeResponse
{
[JsonExtensionData]
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("gameMode")]
public string? GameMode { get; set; }
[JsonPropertyName("backendUrl")]
public string? BackendUrl { get; set; }
}