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.
20 lines
317 B
20 lines
317 B
#ifndef USERENTITY_H
|
|
#define USERENTITY_H
|
|
|
|
#include "Entity.h"
|
|
#include <QString>
|
|
#include <QxOrm.h>
|
|
|
|
class UserEntity : public Entity
|
|
{
|
|
public:
|
|
UserEntity();
|
|
virtual ~UserEntity();
|
|
|
|
QString username;
|
|
};
|
|
|
|
QX_REGISTER_HPP_EXPORT_DLL(UserEntity, qx::trait::no_base_class_defined, 0)
|
|
|
|
#endif // USERENTITY_H
|