/* Options: Date: 2024-12-22 21:05:50 Version: 8.51 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ComboBoxExamples.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* open class ComboBoxExamples : IReturn, IPost { open var singleClientValues:String? = null open var multipleClientValues:ArrayList? = null open var singleServerValues:String? = null open var multipleServerValues:ArrayList? = null open var singleServerEntries:String? = null open var multipleServerEntries:ArrayList? = null companion object { private val responseType = ComboBoxExamples::class.java } override fun getResponseType(): Any? = ComboBoxExamples.responseType }