13 lines
275 B
C#
13 lines
275 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Game;
|
|
|
|
public record CheckVersionResponse
|
|
{
|
|
[JsonPropertyName("isvalid")]
|
|
public bool? IsValid { get; set; }
|
|
|
|
[JsonPropertyName("latestVersion")]
|
|
public string? LatestVersion { get; set; }
|
|
}
|