using System; using System.Collections.Generic; namespace NzbDrone.Common.Processes { public class ProcessOutput { public List Standard { get; set; } public List Error { get; set; } public ProcessOutput() { Standard = new List(); Error = new List(); } } }