1
0
mirror of https://github.com/zhuzichu520/FluentUI.git synced 2025-03-11 22:47:30 +08:00
2023-04-11 18:05:07 +08:00

16 lines
244 B
C++

#ifndef APPINFO_H
#define APPINFO_H
#include <QObject>
#include "stdafx.h"
class AppInfo : public QObject
{
Q_OBJECT
Q_PROPERTY_AUTO(QString,version)
public:
explicit AppInfo(QObject *parent = nullptr);
};
#endif // APPINFO_H