16 lines
380 B
C#
16 lines
380 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; }
|
|
}
|