0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 06:30:45 -05:00
2024-05-24 12:24:25 -04:00

12 lines
371 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
namespace SPTInstaller.Models.ReleaseInfo;
public class ReleaseInfo
{
[JsonProperty("AkiVersion")] // TODO: Change this and what gets uploaded to SPTVersion
public string SPTVersion { get; set; }
public string ClientVersion { get; set; }
public List<ReleaseInfoMirror> Mirrors { get; set; }
}