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