Private/CommandResult.ps1

class CommandResult {
    [String] $Command
    [bool] $Success
    [int] $ExitCode
    [String[]] $Output
}