Remotely/Remotely_Server/wwwroot/scripts/Models/GenericCommandResult.ts
Jared Goodwin 61fa16de4c Initial
2019-02-23 11:02:23 -08:00

8 lines
193 B
TypeScript

export interface GenericCommandResult {
MachineID: string;
CommandContextID: string;
CommandType: string;
StandardOutput: string;
ErrorOutput: string;
TimeStamp: Date;
}