12 lines
371 B
C#
Raw Normal View History

using System.Collections.Generic;
using Newtonsoft.Json;
namespace SPTInstaller.Models.ReleaseInfo;
2024-05-01 10:31:55 -04:00
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; }
2024-05-01 10:31:55 -04:00
}