Remotely/Remotely_Server/wwwroot/scripts/Models/CommandContext.ts
2021-07-29 07:53:41 -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[];
}