16 lines
426 B
C#
Raw Permalink Normal View History

2023-08-25 19:09:36 -04:00
using SPTInstaller.CustomControls;
using System.Threading.Tasks;
2023-05-11 23:11:39 -04:00
namespace SPTInstaller.Interfaces;
public interface IPreCheck
2023-05-11 23:11:39 -04:00
{
public string Id { get; }
public string Name { get; }
public bool IsRequired { get; }
public string PreCheckDetails { get; }
2023-08-25 19:09:36 -04:00
public StatusSpinner.SpinnerState State { get; set; }
public event EventHandler ReeevaluationRequested;
public Task<IResult> RunCheck();
}