Files
RRJServer/DataBaseInterface/classroom.h
2025-12-05 11:48:24 +03:00

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