Remotely/Server/wwwroot/scripts/Models/Device.ts
2021-07-29 07:53:59 -07:00

24 lines
565 B
TypeScript

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