mirror of https://github.com/stashapp/stash.git
14 lines
355 B
Go
14 lines
355 B
Go
package stashbox
|
|
|
|
import "github.com/stashapp/stash/pkg/models"
|
|
|
|
type StashBoxStudioQueryResult struct {
|
|
Query string `json:"query"`
|
|
Results []*models.ScrapedStudio `json:"results"`
|
|
}
|
|
|
|
type StashBoxPerformerQueryResult struct {
|
|
Query string `json:"query"`
|
|
Results []*models.ScrapedPerformer `json:"results"`
|
|
}
|