Remotely/Server/wwwroot/scripts/Models/PSCoreCommandResult.ts
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -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;
}