16 lines
430 B
C#
Raw 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;
2024-05-01 10:31:55 -04:00
public Task<IResult> RunCheck();
}