d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
15 lines
290 B
C#
15 lines
290 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record CheckVersionResponse
|
|
{
|
|
|
|
|
|
[JsonPropertyName("isvalid")]
|
|
public bool? IsValid { get; set; }
|
|
|
|
[JsonPropertyName("latestVersion")]
|
|
public string? LatestVersion { get; set; }
|
|
}
|