first commit

This commit is contained in:
2025-09-13 15:34:27 +02:00
commit d423636b03
18 changed files with 475 additions and 0 deletions

21
information.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef INFORMATION_H
#define INFORMATION_H
#include <QString>
#include <QJsonObject>
class Information
{
public:
Information(QString version, QString apiVersion, QString goVersion, QString osName, QString osArchitecture);
Information(QJsonObject obj);
private:
QString _version;
QString _apiVersion;
QString _goVersion;
QString _osName;
QString _osArchitecture;
};
#endif // INFORMATION_H