mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
13 lines
199 B
C
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
|