mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-03 13:09:34 +00:00
19 lines
325 B
C
19 lines
325 B
C
|
#ifndef TEMPLATEINFO_H
|
||
|
#define TEMPLATEINFO_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QHash>
|
||
|
#include <deploy_global.h>
|
||
|
|
||
|
struct DEPLOYSHARED_EXPORT TemplateInfo
|
||
|
{
|
||
|
QString Name;
|
||
|
QString Description;
|
||
|
QString Version;
|
||
|
QString ReleaseData;
|
||
|
QString Icon;
|
||
|
QHash<QString, QString> Custom;
|
||
|
};
|
||
|
|
||
|
#endif // TEMPLATEINFO_H
|