qstbak/Questionable/Questionable.Windows.Setup/ISetupStep.cs
2026-08-17 20:27:25 +10:00

12 lines
159 B
C#

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