Files
RRJServer/DataBaseLMS/group.h

14 lines
188 B
C++

#ifndef GROUP_H
#define GROUP_H
#include "basicentity.h"
class DATABASELMS_EXPORT Group: public BasicEntity
{
public:
Group();
Group(int id, QString name);
};
#endif // GROUP_H