FluentUI/example/AppInfo.h

16 lines
244 B
C
Raw Normal View History

2023-04-11 18:05:07 +08:00
#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