mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
interface CommandContext {
|
|
ID: string;
|
|
CommandMode: string;
|
|
CommandText: string;
|
|
SenderUserID: string;
|
|
SenderConnectionID: string;
|
|
TargetDeviceIDs: string[];
|
|
PSCoreResults: any[];
|
|
CommandResults: any[];
|
|
TimeStamp: Date;
|
|
OrganizationID: string;
|
|
}
|