#ifndef FIELDPROPERTIES_H
#define FIELDPROPERTIES_H
#include <QHash>
#include <QVariant>
#include <QSharedData>
class Table;
class FieldProperties : public QSharedData
{
public:
    FieldProperties(const QString name, QVariant::Type type );

    QString m_fieldName;
    QVariant::Type m_type;
    QHash<QString,QVariant> m_props;
    const Table *m_parent;
};

#endif // FEILDPROPERTIES_H

