commonMain.com.saveourtool.save.demo.DemoRunRequest.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.demo
import kotlinx.serialization.Serializable
/**
* @property codeLines file as String that contains code requested for demo run
* @property mode mode to determine the mode that the tool should be run in
* @property config additional configuration file for demo
*/
@Serializable
data class DemoRunRequest(
val codeLines: List,
val mode: String,
val config: List? = null,
) {
companion object {
val empty = DemoRunRequest(emptyList(), "", null)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy