Remotely/Server/wwwroot/scripts/Models/PSCoreCommandResult.ts
Jared Goodwin a0405e28a0 WIP
2019-06-15 18:08:30 -07:00

11 lines
282 B
TypeScript

export interface PSCoreCommandResult {
DeviceID: string;
CommandContextID: string;
VerboseOutput: string[];
DebugOutput: string[];
ErrorOutput: string[];
HostOutput: string;
InformationOutput: string[];
WarningOutput: string[];
TimeStamp: Date;
}