Files
RRJServer/DataBaseLMS/classroom.h

14 lines
212 B
C++

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