24 lines
427 B
C#
24 lines
427 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record CheckVersionResponse
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("isvalid")]
|
|
public bool? IsValid
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("latestVersion")]
|
|
public string? LatestVersion
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|