stash/pkg/models/model_joins.go

15 lines
371 B
Go
Raw Normal View History

2019-02-09 12:30:49 +00:00
package models
import "database/sql"
type MoviesScenes struct {
MovieID int `db:"movie_id" json:"movie_id"`
SceneID int `db:"scene_id" json:"scene_id"`
SceneIndex sql.NullInt64 `db:"scene_index" json:"scene_index"`
}
2020-10-24 03:31:39 +00:00
type StashID struct {
StashID string `db:"stash_id" json:"stash_id"`
Endpoint string `db:"endpoint" json:"endpoint"`
}