mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 23:15:14 -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
|