namespace Recyclarr.Migration; public interface IMigrationStep { int Order { get; } string Description { get; } IReadOnlyCollection Remediation { get; } bool Required { get; } bool CheckIfNeeded(); void Execute(); }