Remotely/Server/wwwroot/scripts/Models/GenericCommandResult.ts
2020-03-05 07:58:15 -08:00

8 lines
191 B
TypeScript

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