10 lines
196 B
C#
10 lines
196 B
C#
|
|
using System;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace LANCommander.SDK.PowerShell;
|
||
|
|
|
||
|
|
public interface IScriptDebugContext
|
||
|
|
{
|
||
|
|
Guid SessionId { get; set; }
|
||
|
|
Task ExecuteAsync(string script);
|
||
|
|
}
|