Files
CleanFlashInstaller/CleanFlashCommon/IProgressForm.cs
T
2021-05-15 03:40:58 +03:00

8 lines
165 B
C#

namespace CleanFlashCommon {
public interface IProgressForm {
void UpdateProgressLabel(string text, bool tick);
void TickProgress();
}
}