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
7 lines
162 B
C#
7 lines
162 B
C#
namespace SPTInstaller.Models.ReleaseInfo;
|
|
public class ReleaseInfoMirror
|
|
{
|
|
public string DownloadUrl { get; set; }
|
|
public string Hash { get; set; }
|
|
}
|