Files
SPT-Server-Build/Core/Models/Eft/Game/GameStartResponse.cs
T
2025-01-16 15:21:54 +00:00

10 lines
182 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Game;
public class GameStartResponse
{
[JsonPropertyName("utc_time")]
public double UtcTime { get; set; }
}