You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
432 B
24 lines
432 B
#ifndef FOLDERFOLDERPROPERTIES_H
|
|
#define FOLDERFOLDERPROPERTIES_H
|
|
|
|
#include <QObject>
|
|
#include <QMetaType>
|
|
|
|
#include "model/databaseManager/dto/ProbeProperties/DbmApplicatoin.h"
|
|
|
|
struct FolderFolderProperties_t {
|
|
QString image;
|
|
QString name;
|
|
int ID;
|
|
int order;
|
|
|
|
void init(DbmDtoApplication temp)
|
|
{
|
|
image = temp.image;
|
|
name = temp.showText;
|
|
ID = temp.ID;
|
|
order = temp.orderNum;
|
|
}
|
|
};
|
|
|
|
#endif //FOLDERFOLDERPROPERTIES_H
|
|
|