mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
interface GenericCommandResult {
|
|
MachineID: string;
|
|
CommandContextID: string;
|
|
CommandType: string;
|
|
StandardOutput: string;
|
|
ErrorOutput: string;
|
|
TimeStamp: Date;
|
|
}
|