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