/* Options: Date: 2026-08-15 12:14:50 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: QueryArtists.* //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", "GET") // @Route("/artists/{ArtistId}", "GET") type QueryArtists struct { ss.QueryDb ArtistId *int64 `json:"artistId,omitempty"` ArtistIdBetween []int64 `json:"artistIdBetween"` NameStartsWith string `json:"nameStartsWith"` } func (QueryArtists) CreateResponse() (r ss.QueryResponse[Artists]) { return } func (QueryArtists) HttpMethod() string { return "GET" }