10 lines
199 B
C#
10 lines
199 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record GameStartResponse
|
|
{
|
|
[JsonPropertyName("utc_time")]
|
|
public double UtcTime { get; set; }
|
|
}
|