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
+12
View File
@@ -0,0 +1,12 @@
namespace CleanFlashCommon {
public class ExitedProcess {
public int ExitCode { get; set; }
public string Output { get; set; }
public bool IsSuccessful {
get {
return ExitCode == 0;
}
}
}
}