aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/ConfigMigration/configmigrationitem.h
blob: ef080650e2b9e3267028aca93b04feebcd8a34a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef CONFIGMIGRATIONITEM_H
#define CONFIGMIGRATIONITEM_H

#include <QString>

struct ConfigMigrationItem
{
    enum class Type
    {
        SQL_HISTORY,
        DATABASES,
        FUNCTION_LIST,
        BUG_REPORTS
    };

    QString label;
    Type type;
};

#endif // CONFIGMIGRATIONITEM_H