Files
rookie/Sideloader/ProcessOutput.cs
2021-04-15 20:39:22 +08:00

26 lines
604 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AndroidSideloader
{
public class ProcessOutput
{
public string Output;
public string Error;
public ProcessOutput(string output = "", string error = "")
{
Output = output;
Error = error;
}
public static ProcessOutput operator +(ProcessOutput a, ProcessOutput b)
{
return new ProcessOutput(a.Output + b.Output, a.Error + b.Error);
}
}
}