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

22 lines
544 B
TypeScript

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