0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 09:50:45 -05:00
2024-05-01 10:31:55 -04:00

10 lines
256 B
C#

using System.Collections.Generic;
namespace SPTInstaller.Models.ReleaseInfo;
public class ReleaseInfo
{
public string AkiVersion { get; set; }
public string ClientVersion { get; set; }
public List<ReleaseInfoMirror> Mirrors { get; set; }
}