mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-23 02:51:26 -07:00
19 lines
503 B
C#
19 lines
503 B
C#
namespace Bloxstrap.Dialogs.BootstrapperDialogs
|
|
{
|
|
public interface IBootstrapperDialog
|
|
{
|
|
Bootstrapper? Bootstrapper { get; set; }
|
|
|
|
string Message { get; set; }
|
|
ProgressBarStyle ProgressStyle { get; set; }
|
|
int ProgressValue { get; set; }
|
|
bool CancelEnabled { get; set; }
|
|
|
|
void RunBootstrapper();
|
|
void ShowSuccess(string message);
|
|
void ShowError(string message);
|
|
void CloseDialog();
|
|
void PromptShutdown();
|
|
}
|
|
}
|