Remotely/Shared/Models/CommandResult.cs.d.ts
2021-07-29 07:56:06 -07:00

23 lines
509 B
TypeScript

interface commandResult {
iD: string;
commandMode: string;
commandText: string;
senderUserID: string;
senderConnectionID: string;
targetDeviceIDs: string[];
pSCoreResults: any[];
commandResults: any[];
timeStamp: Date;
organization: {
iD: string;
organizationName: string;
remotelyUsers: any[];
devices: any[];
commandResults: .commandResult[];
eventLogs: any[];
permissionGroups: any[];
inviteLinks: any[];
sharedFiles: any[];
};
organizationID: string;
}