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