mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
18 lines
369 B
C#
18 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>();
|
||
|
}
|
||
|
}
|
||
|
}
|