Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
edhrec_api_response_archidekt_links.h
Go to the documentation of this file.
1#ifndef ARCHIDEKTENTRY_H
2#define ARCHIDEKTENTRY_H
3
4#include <QJsonObject>
5#include <QString>
6#include <QVector>
7
14{
15public:
16 QString c;
17 int f = 0;
18 int q = 0;
19 QString u;
20
21 void fromJson(const QJsonObject &json);
22 void debugPrint() const;
23};
24
31{
32public:
33 QVector<EdhrecApiResponseArchidektLink> entries;
34
35 void fromJson(const QJsonArray &json);
36 void debugPrint() const;
37};
38
39#endif // ARCHIDEKTENTRY_H