Remotely/Server/wwwroot/scripts/Models/CommandContext.ts
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -07:00

11 lines
264 B
TypeScript

export interface CommandContext {
ID: string;
CommandMode: string;
CommandText: string;
SenderUserID: string;
SenderConnectionID: string;
TargetDeviceIDs: string[];
PSCoreResults: any[];
CMDResults: any[];
WinPSResults: any[];
}