mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Studio image and parent studio support in scene tagger * Refactor studio backend and add studio tagger --------- Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
13 lines
355 B
Go
13 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"`
|
|
}
|