LANCommander/LANCommander.SDK/PowerShell/IScriptDebugContext.cs

10 lines
196 B
C#
Raw Normal View History

using System;
using System.Threading.Tasks;
namespace LANCommander.SDK.PowerShell;
public interface IScriptDebugContext
{
Guid SessionId { get; set; }
Task ExecuteAsync(string script);
}