mirror of
https://gitlab.com/cleanflash/installer.git
synced 2026-08-13 10:51:37 +08:00
Initial commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user