From 5c9b0b7c9f125ab0069b3ed75cb068b1a5b1af28 Mon Sep 17 00:00:00 2001 From: Phodal Huang Date: Mon, 6 Jan 2025 20:33:11 +0800 Subject: [PATCH] feat(variable): add DebugValue data class Introduce DebugValue data class implementing the Variable interface to support debug-specific variable handling. --- .../phodal/shirecore/provider/variable/model/Variable.kt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/core/src/main/kotlin/com/phodal/shirecore/provider/variable/model/Variable.kt b/core/src/main/kotlin/com/phodal/shirecore/provider/variable/model/Variable.kt index 5a97391de..8368c0515 100644 --- a/core/src/main/kotlin/com/phodal/shirecore/provider/variable/model/Variable.kt +++ b/core/src/main/kotlin/com/phodal/shirecore/provider/variable/model/Variable.kt @@ -4,4 +4,10 @@ interface Variable { val variableName: String val description: String var value: Any? -} \ No newline at end of file +} + +data class DebugValue( + override val variableName: String, + override var value: Any?, + override val description: String, +) :Variable \ No newline at end of file