LANCommander/LANCommander.SDK/PowerShell/IExternalScriptRunner.cs

8 lines
No EOL
167 B
C#

using System.Threading.Tasks;
namespace LANCommander.SDK.PowerShell;
public interface IExternalScriptRunner
{
Task<bool> ExecuteAsync(PowerShellScript script);
}