minor cleanup

This commit is contained in:
Keivan Beigi
2014-12-06 22:08:51 -08:00
parent 6af9b03d26
commit 3b087ba922
3 changed files with 8 additions and 11 deletions
@@ -5,8 +5,8 @@ namespace NzbDrone.Common.Processes
{
public class ProcessOutput
{
public List<String> Standard { get; set; }
public List<String> Error { get; set; }
public List<String> Standard { get; private set; }
public List<String> Error { get; private set; }
public ProcessOutput()
{