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

8 lines
192 B
TypeScript

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