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"` }