namespace Questionable.Windows.Setup; internal interface ISetupStep { string Title { get; } bool CanAdvance { get; } bool ShouldShow(); void Draw(); }