/* Options: Date: 2026-06-06 01:03:38 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://link.dc8.unico3.cloud //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Hello.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/hello") open class Hello : IReturn { companion object { private val responseType = HelloResponse::class.java } override fun getResponseType(): Any? = Hello.responseType } open class HelloResponse { var Result:String? = null }