mirror of https://github.com/stashapp/stash.git
12 lines
143 B
Go
12 lines
143 B
Go
|
package models
|
||
|
|
||
|
type QueryOptions struct {
|
||
|
FindFilter *FindFilterType
|
||
|
Count bool
|
||
|
}
|
||
|
|
||
|
type QueryResult struct {
|
||
|
IDs []int
|
||
|
Count int
|
||
|
}
|