This commit is contained in:
CWX
2025-01-16 15:27:37 +00:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ public class GameConfigResponse
public bool? UseProtobuf { get; set; }
[JsonPropertyName("utc_time")]
public long? UtcTime { get; set; }
public double? UtcTime { get; set; }
/** Total in game time */
[JsonPropertyName("totalInGame")]
+2 -2
View File
@@ -1,9 +1,9 @@
using System.Text.Json.Serialization;
using System.Text.Json.Serialization;
namespace Core.Models.Eft.Game;
public class GameStartResponse
{
[JsonPropertyName("utc_time")]
public long? UtcTime { get; set; }
public double UtcTime { get; set; }
}