Add delete for performers and studios

This commit is contained in:
WithoutPants
2019-08-15 07:40:51 +10:00
parent 39bdede110
commit 35bcf97a7a
16 changed files with 375 additions and 3 deletions

View File

@@ -109,6 +109,10 @@ type PerformerCreateInput struct {
Image string `json:"image"`
}
type PerformerDestroyInput struct {
ID string `json:"id"`
}
type PerformerFilterType struct {
// Filter by favorite
FilterFavorites *bool `json:"filter_favorites"`
@@ -254,6 +258,10 @@ type StudioCreateInput struct {
Image string `json:"image"`
}
type StudioDestroyInput struct {
ID string `json:"id"`
}
type StudioUpdateInput struct {
ID string `json:"id"`
Name *string `json:"name"`