#ifndef STUDENT_H #define STUDENT_H #include #include namespace TC { class StudentList : public QObject { Q_OBJECT public: StudentList(); StudentList(const QString &name); std::optional get(); QString url; }; } // namespace TC #endif // STUDENT_H