/* Options: Date: 2026-09-01 21:49:55 Version: 10.09 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PatchArtists.* //ExcludeTypes: //DefaultImports: */ package dtos import ( ss "github.com/ServiceStack/servicestack-go" ) type Artists struct { ArtistId int64 `json:"artistId,omitempty"` Name string `json:"name"` } // @Route("/artists/{ArtistId}", "PATCH") type PatchArtists struct { ArtistId int64 `json:"artistId,omitempty"` Name string `json:"name"` } func (PatchArtists) CreateResponse() (r ss.IdResponse) { return } func (PatchArtists) HttpMethod() string { return "PATCH" }