mirror of
https://gitlab.com/cleanflash/installer.git
synced 2026-08-13 10:51:37 +08:00
8 lines
165 B
C#
8 lines
165 B
C#
namespace CleanFlashCommon {
|
|
public interface IProgressForm {
|
|
|
|
void UpdateProgressLabel(string text, bool tick);
|
|
void TickProgress();
|
|
}
|
|
}
|