59 lines
1.6 KiB
C#
Raw Normal View History

2023-05-11 23:11:39 -04:00
using System.Collections.Generic;
2022-07-09 13:08:41 -04:00
using System.IO;
2022-07-09 00:33:55 -04:00
2023-05-11 23:11:39 -04:00
namespace SPTInstaller.Models
2022-07-09 00:33:55 -04:00
{
public class InternalData
{
/// <summary>
/// The folder to install SPT into
/// </summary>
public string TargetInstallPath { get; set; }
/// <summary>
/// The orginal EFT game path
/// </summary>
public string OriginalGamePath { get; set; }
/// <summary>
/// The original EFT game version
/// </summary>
public string OriginalGameVersion { get; set; }
2022-07-09 13:14:03 -04:00
2022-07-09 13:08:41 -04:00
/// <summary>
/// Patcher zip file info
/// </summary>
public FileInfo PatcherZipInfo { get; set; }
2022-07-09 00:33:55 -04:00
2022-07-09 13:08:41 -04:00
/// <summary>
/// SPT-AKI zip file info
/// </summary>
public FileInfo AkiZipInfo { get; set; }
2022-07-09 00:33:55 -04:00
/// <summary>
/// The release download link for SPT-AKI
/// </summary>
public string AkiReleaseDownloadLink { get; set; }
2023-03-06 18:29:33 -05:00
/// <summary>
/// The release zip hash
/// </summary>
public string AkiReleaseHash { get; set; } = null;
2022-07-09 00:33:55 -04:00
/// <summary>
/// The release download link for the patcher mirror list
/// </summary>
public string PatcherMirrorsLink { get; set; }
/// <summary>
/// The release download mirrors for the patcher
/// </summary>
2022-07-11 21:19:47 -04:00
public List<DownloadMirror> PatcherReleaseMirrors { get; set; } = null;
2022-07-09 00:33:55 -04:00
/// <summary>
/// Whether or not a patch is needed to downgrade the client files
/// </summary>
public bool PatchNeeded { get; set; }
}
}