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

12 lines
271 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Game;
public class CheckVersionResponse
{
[JsonPropertyName("isvalid")]
public bool IsValid { get; set; }
[JsonPropertyName("latestVersion")]
public string LatestVersion { get; set; }
}