/* Options: Date: 2026-09-01 21:26:37 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: QueryLevel.* //ExcludeTypes: //DefaultImports: */ package dtos import ( ss "github.com/ServiceStack/servicestack-go" ) type Level struct { Id string `json:"id,omitempty"` Data []byte `json:"data"` } type QueryLevel struct { ss.QueryDb Id *string `json:"id,omitempty"` } func (QueryLevel) CreateResponse() (r ss.QueryResponse[Level]) { return } func (QueryLevel) HttpMethod() string { return "GET" }