Let's make (git) history!
Dieser Commit ist enthalten in:
19
database/queryoption.h
Normale Datei
19
database/queryoption.h
Normale Datei
@@ -0,0 +1,19 @@
|
||||
#ifndef QUERYOPTION_H
|
||||
#define QUERYOPTION_H
|
||||
|
||||
enum SORT_ORDER
|
||||
{
|
||||
ASCENDING = 0,
|
||||
DESCENDING
|
||||
};
|
||||
|
||||
class QueryOption
|
||||
{
|
||||
public:
|
||||
unsigned int offset = 0;
|
||||
unsigned int limit = 0;
|
||||
SORT_ORDER order = ASCENDING;
|
||||
bool includeInvisible = true;
|
||||
};
|
||||
|
||||
#endif // QUERYOPTION_H
|
In neuem Issue referenzieren
Einen Benutzer sperren