Cockatrice 2026-09-01-Development-3.1.0-beta.10
A virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
card_in_deck_request.h
Go to the documentation of this file.
1#ifndef COCKATRICE_CARD_IN_DECK_REQUEST_H
2#define COCKATRICE_CARD_IN_DECK_REQUEST_H
3#include <QJsonObject>
4
6{
7 static CardInDeckRequest fromJson(const QJsonObject &json);
8 QJsonObject toJson() const;
9
10 QString card;
12};
13
14#endif // COCKATRICE_CARD_IN_DECK_REQUEST_H
Definition card_in_deck_request.h:6
int quantity
Definition card_in_deck_request.h:11
QJsonObject toJson() const
Definition card_in_deck_request.cpp:11
static CardInDeckRequest fromJson(const QJsonObject &json)
Definition card_in_deck_request.cpp:3
QString card
Definition card_in_deck_request.h:10