mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Add new query interface * Refactor query builder * Change Query interface * Return duration and filesize in scene query * Adjust UI for scene metadata * Introduce new image query interface * Change image Query interface * Add megapixels and size to image query * Update image UI Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
11 lines
143 B
Go
11 lines
143 B
Go
package models
|
|
|
|
type QueryOptions struct {
|
|
FindFilter *FindFilterType
|
|
Count bool
|
|
}
|
|
|
|
type QueryResult struct {
|
|
IDs []int
|
|
Count int
|
|
}
|