9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
|
type APICommandInquireHostResponseBody = {
|
||
|
hostName: string;
|
||
|
hostOS: string;
|
||
|
hostUUID: string;
|
||
|
isConnected: boolean;
|
||
|
isInetConnected: boolean;
|
||
|
isOSRegistered: boolean;
|
||
|
};
|