0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-12 17:10:46 -05:00
2024-05-01 10:31:55 -04:00

16 lines
430 B
C#

using SPTInstaller.CustomControls;
using System.Threading.Tasks;
namespace SPTInstaller.Interfaces;
public interface IPreCheck
{
public string Id { get; }
public string Name { get; }
public bool IsRequired { get; }
public string PreCheckDetails { get; }
public StatusSpinner.SpinnerState State { get; set; }
public event EventHandler ReeevaluationRequested;
public Task<IResult> RunCheck();
}