Files
SPT-Server-Build/Core/Models/Eft/Game/GameStartResponse.cs
T

9 lines
185 B
C#

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