SPT-AKI-Installer/Aki.Core/Interfaces/ILiveTaskTableEntry.cs
2022-07-09 00:33:55 -04:00

22 lines
498 B
C#

using Spectre.Console;
using SPT_AKI_Installer.Aki.Core.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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();
}
}