Remotely/Remotely_Server/wwwroot/scripts/Models/GenericCommandResult.ts
2021-07-29 07:53:41 -07:00

8 lines
192 B
TypeScript

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