/* Options: Date: 2025-12-06 07:50:23 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllBarSpecialityRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/bar_speciality/get_all", Verbs="GET") open class GetAllBarSpecialityRequest : IReturn, IGet { companion object { private val responseType = GetAllBarSpecialityResponse::class.java } override fun getResponseType(): Any? = GetAllBarSpecialityRequest.responseType } open class GetAllBarSpecialityResponse { open var barSpecialities:ArrayList = ArrayList() } open class BarSpecialityDto { open var id:Long? = null open var slug:String? = null open var title:String? = null }