/* Options: Date: 2026-09-01 21:27:38 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: QueryPlaylists.* //ExcludeTypes: //DefaultImports: */ package dtos import ( ss "github.com/ServiceStack/servicestack-go" ) type Playlists struct { PlaylistId int64 `json:"playlistId,omitempty"` Name string `json:"name"` } // @Route("/playlists", "GET") // @Route("/playlists/{PlaylistId}", "GET") type QueryPlaylists struct { ss.QueryDb PlaylistId *int64 `json:"playlistId,omitempty"` } func (QueryPlaylists) CreateResponse() (r ss.QueryResponse[Playlists]) { return } func (QueryPlaylists) HttpMethod() string { return "GET" }