ProcessResult.cs 519 B

123456789101112131415161718
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. namespace HelixTestRunner;
  4. public class ProcessResult
  5. {
  6. public ProcessResult(string standardOutput, string standardError, int exitCode)
  7. {
  8. StandardOutput = standardOutput;
  9. StandardError = standardError;
  10. ExitCode = exitCode;
  11. }
  12. public string StandardOutput { get; }
  13. public string StandardError { get; }
  14. public int ExitCode { get; }
  15. }