Sonarr/src/NzbDrone.Common/Processes/ProcessOutput.cs

18 lines
385 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace NzbDrone.Common.Processes
{
public class ProcessOutput
{
2014-12-07 06:08:51 +00:00
public List<String> Standard { get; private set; }
public List<String> Error { get; private set; }
public ProcessOutput()
{
Standard = new List<string>();
Error = new List<string>();
}
}
}