You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Cli/Migration/IMigrationStep.cs

14 lines
298 B

using Spectre.Console;
namespace Recyclarr.Cli.Migration;
public interface IMigrationStep
{
int Order { get; }
string Description { get; }
IReadOnlyCollection<string> Remediation { get; }
bool Required { get; }
bool CheckIfNeeded();
void Execute(IAnsiConsole? console);
}