mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Move graphql generated files to api * Refactor identify options * Remove models.StashBoxes * Move ScraperSource to scraper package * Rename field strategy enums * Rename identify.TaskOptions to Options
22 lines
686 B
Go
22 lines
686 B
Go
package scraper
|
|
|
|
import "github.com/stashapp/stash/pkg/models"
|
|
|
|
type ScrapedGallery struct {
|
|
Title *string `json:"title"`
|
|
Details *string `json:"details"`
|
|
URL *string `json:"url"`
|
|
Date *string `json:"date"`
|
|
Studio *models.ScrapedStudio `json:"studio"`
|
|
Tags []*models.ScrapedTag `json:"tags"`
|
|
Performers []*models.ScrapedPerformer `json:"performers"`
|
|
}
|
|
|
|
func (ScrapedGallery) IsScrapedContent() {}
|
|
|
|
type ScrapedGalleryInput struct {
|
|
Title *string `json:"title"`
|
|
Details *string `json:"details"`
|
|
URL *string `json:"url"`
|
|
Date *string `json:"date"`
|
|
}
|