using System.Collections.Generic; namespace Mongo2Go.Helper { public class ProcessOutput { public ProcessOutput(IEnumerable errorOutput, IEnumerable standardOutput) { StandardOutput = standardOutput; ErrorOutput = errorOutput; } public IEnumerable StandardOutput { get; private set; } public IEnumerable ErrorOutput { get; private set; } } }