1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 11:53:06 +00:00
Radarr/NzbDrone.Common/Processes/ProcessOutput.cs

17 lines
369 B
C#

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