0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 08:50:45 -05:00

18 lines
362 B
C#

using System.Threading.Tasks;
namespace SPTInstaller.Interfaces;
public interface IPreCheck
{
public string Id { get; }
public string Name { get; }
public bool IsRequired { get; }
public bool IsPending { get; set; }
public bool Passed { get; }
public string PreCheckDetails { get; }
public Task<IResult> RunCheck();
}