Files
SPT-Server-Build/Core/Models/Eft/Game/GameKeepAliveResponse.cs
T
2025-01-06 23:49:14 +00:00

12 lines
259 B
C#

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