Remotely/Remotely_Server/wwwroot/scripts/Models/Device.ts
2021-07-29 07:53:41 -07:00

19 lines
429 B
TypeScript

export interface Device {
Drives: any[];
ID: string;
Is64Bit: boolean;
IsOnline: boolean;
LastOnline: Date;
DeviceName: string;
OrganizationID: string;
OSArchitecture: any;
OSDescription: string;
Platform: string;
ProcessorCount: number;
TotalMemory: number;
FreeStorage: number;
TotalStorage: number;
FreeMemory: number;
CurrentUser: string;
Tags: string;
}