18 lines
362 B
C#
Raw Normal View History

2023-05-11 23:11:39 -04:00
using System.Threading.Tasks;
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; }
2023-05-11 23:11:39 -04:00
public bool IsPending { get; set; }
2023-05-11 23:11:39 -04:00
public bool Passed { get; }
2023-05-11 23:11:39 -04:00
public string PreCheckDetails { get; }
public Task<IResult> RunCheck();
}