yacreader/YACReaderLibrary/comic_vine/model/volume_search_query.h
Luis Ángel San Martín 868de856a7 Add support for exact match searches
It will be enabled by default.
2025-05-05 18:35:07 +02:00

13 lines
199 B
C

#ifndef VOLUME_SEARCH_QUERY_H
#define VOLUME_SEARCH_QUERY_H
#include <QString>
struct VolumeSearchQuery {
QString volume;
int page;
bool exactMatch;
};
#endif // VOLUME_SEARCH_QUERY_H