forked from aly/qstbak
12 lines
159 B
C#
12 lines
159 B
C#
namespace Questionable.Windows.Setup;
|
|
|
|
internal interface ISetupStep
|
|
{
|
|
string Title { get; }
|
|
|
|
bool CanAdvance { get; }
|
|
|
|
bool ShouldShow();
|
|
|
|
void Draw();
|
|
}
|