17 lines
314 B
C#
17 lines
314 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record GameStartResponse
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("utc_time")]
|
|
public double UtcTime
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|