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

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;
}
}
}
}