d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
21 lines
335 B
C#
21 lines
335 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public enum SessionMode
|
|
{
|
|
REGULAR,
|
|
PVE,
|
|
}
|
|
|
|
public record GameModeResponse
|
|
{
|
|
|
|
|
|
[JsonPropertyName("gameMode")]
|
|
public string? GameMode { get; set; }
|
|
|
|
[JsonPropertyName("backendUrl")]
|
|
public string? BackendUrl { get; set; }
|
|
}
|