Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GameModeResponse.cs
T
2025-06-25 15:16:38 +01:00

22 lines
425 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; }
}