Initial commit

This commit is contained in:
Daniel
2021-05-15 03:40:58 +03:00
commit f4c3bc5671
58 changed files with 5358 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace CleanFlashCommon {
public interface IProgressForm {
void UpdateProgressLabel(string text, bool tick);
void TickProgress();
}
}