/* Options: Date: 2026-08-15 08:52:51 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: ComboBoxExamples.* //ExcludeTypes: //DefaultImports: */ package dtos type ComboBoxExamples struct { SingleClientValues *string `json:"singleClientValues,omitempty"` MultipleClientValues []string `json:"multipleClientValues,omitempty"` SingleServerValues *string `json:"singleServerValues,omitempty"` MultipleServerValues []string `json:"multipleServerValues,omitempty"` SingleServerEntries *string `json:"singleServerEntries,omitempty"` MultipleServerEntries []string `json:"multipleServerEntries,omitempty"` } func (ComboBoxExamples) HttpMethod() string { return "POST" }