9 lines
161 B
C#
9 lines
161 B
C#
using System.Diagnostics;
|
|
|
|
namespace MxGateway.Server.Workers;
|
|
|
|
public interface IWorkerProcessFactory
|
|
{
|
|
IWorkerProcess Start(ProcessStartInfo startInfo);
|
|
}
|