mirror of https://github.com/stashapp/stash.git
23 lines
686 B
Go
23 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"`
|
||
|
}
|