ac95894967
- Removes another hit to the Gitea API - Renamed 'Models/Releases' to 'Models/ReleaseInfo' to avoid a .gitignore hit, this adds the missing files - Moved the definition for the release.json URL to DownloadCacheHelper for now
11 lines
257 B
C#
11 lines
257 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; }
|
|
}
|
|
|