stash/pkg/models/query.go

12 lines
143 B
Go

package models
type QueryOptions struct {
FindFilter *FindFilterType
Count bool
}
type QueryResult struct {
IDs []int
Count int
}