mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
25 lines
570 B
TypeScript
25 lines
570 B
TypeScript
export interface Device {
|
|
Alias: string;
|
|
AgentVersion: string;
|
|
CpuUtilization: number;
|
|
CurrentUser: string;
|
|
DeviceName: string;
|
|
DeviceGroupID: string;
|
|
Drives: any[];
|
|
ID: string;
|
|
Is64Bit: boolean;
|
|
IsOnline: boolean;
|
|
LastOnline: Date;
|
|
Notes: string;
|
|
OrganizationID: string;
|
|
OSArchitecture: any;
|
|
OSDescription: string;
|
|
Platform: string;
|
|
ProcessorCount: number;
|
|
PublicIP: string;
|
|
TotalMemory: number;
|
|
TotalStorage: number;
|
|
Tags: string;
|
|
UsedMemory: number;
|
|
UsedStorage: number;
|
|
} |