namespace Flow.Launcher.Plugin;
///
/// Interface for progress box
///
public interface IProgressBoxEx
{
///
/// Show progress box. It should be called from the main ui thread.
///
///
/// Progress value. Should be between 0 and 100. When progress is 100, the progress box will be closed.
///
public void ReportProgress(double progress);
///
/// Close progress box. It should be called from the main ui thread.
///
public void Close();
}