/* Options: Date: 2024-11-21 21:02:54 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sharpscript.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EvaluateScripts.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/pages/eval") open class EvaluateScripts : IReturn { var files:HashMap = HashMap() var args:HashMap = HashMap() var page:String? = null companion object { private val responseType = String::class.java } override fun getResponseType(): Any? = EvaluateScripts.responseType }