d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
15 lines
278 B
C#
15 lines
278 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record GameKeepAliveResponse
|
|
{
|
|
|
|
|
|
[JsonPropertyName("msg")]
|
|
public string? Message { get; set; }
|
|
|
|
[JsonPropertyName("utc_time")]
|
|
public double? UtcTime { get; set; }
|
|
}
|