mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 09:50:45 -05:00
![DrakiaXYZ](/assets/img/avatar_default.png)
- 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; }
|
|
}
|