mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-20 06:12:21 +08:00
12 lines
170 B
C++
12 lines
170 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
struct DeviceDetails {
|
|
QString hwid;
|
|
QString os;
|
|
QString osVersion;
|
|
QString model;
|
|
};
|
|
|
|
DeviceDetails GetDeviceDetails(); |