mirror of
https://gitlab.com/cleanflash/installer.git
synced 2026-08-13 19:01:39 +08:00
13 lines
275 B
C#
13 lines
275 B
C#
namespace CleanFlashCommon {
|
|
public class ExitedProcess {
|
|
public int ExitCode { get; set; }
|
|
public string Output { get; set; }
|
|
|
|
public bool IsSuccessful {
|
|
get {
|
|
return ExitCode == 0;
|
|
}
|
|
}
|
|
}
|
|
}
|