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

16 lines
318 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 Task<IResult> RunCheck();
}