Remotely/Server/wwwroot/scripts/Models/CommandContext.ts
Jared Goodwin a0405e28a0 WIP
2019-06-15 18:08:30 -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[];
}