9 lines
202 B
C#
9 lines
202 B
C#
|
|
using System.Diagnostics;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace Nebula.Launcher.ProcessHelper;
|
||
|
|
|
||
|
|
public interface IProcessStartInfoProvider
|
||
|
|
{
|
||
|
|
public Task<ProcessStartInfo> GetProcessStartInfo();
|
||
|
|
}
|