first commit
This commit is contained in:
21
information.h
Normal file
21
information.h
Normal 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
|
||||
Reference in New Issue
Block a user