mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 09:50:45 -05:00
18 lines
412 B
C#
18 lines
412 B
C#
using Spectre.Console;
|
|
using SPT_AKI_Installer.Aki.Core.Model;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SPT_AKI_Installer.Aki.Core.Interfaces
|
|
{
|
|
public interface ILiveTaskTableEntry
|
|
{
|
|
public string TaskName { get; set; }
|
|
|
|
public int RowIndex { get; set; }
|
|
|
|
public void SetContext(LiveDisplayContext context, Table table);
|
|
|
|
public Task<GenericResult> RunAsync();
|
|
}
|
|
}
|