mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-11-30 01:39:38 +01:00
feat(connector): create Action data entity
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package io.anthonyberg.connector.shared.entity
|
||||
|
||||
import kotlinx.serialization.SerialName
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class Action(
|
||||
@SerialName("id")
|
||||
val id: Int,
|
||||
@SerialName("procedure_id")
|
||||
val procedureId: Int,
|
||||
@SerialName("step")
|
||||
val step: Int,
|
||||
@SerialName("type")
|
||||
val type: String,
|
||||
@SerialName("goal")
|
||||
val goal: String,
|
||||
)
|
||||
Reference in New Issue
Block a user