Files
RRJServer/DB_LMS/DataBaseLMS/group.h
2024-11-06 16:06:32 +03:00

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