27 lines
383 B
C#
27 lines
383 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;
|
|
}
|
|
}
|