Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GameStartResponse.cs
T
2025-08-21 09:46:00 +00:00

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; }
}