Remotely/Remotely_Shared/Models/GenericCommandResult.d.ts
2021-07-29 07:53:51 -07:00

9 lines
176 B
TypeScript

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