API 1.0.35 tutorial_step direction, branch

This commit is contained in:
Bossanyi Tibor
2021-04-29 08:05:42 +02:00
parent c1e5cde43f
commit 8269e8b4a0
7 changed files with 21 additions and 5 deletions
@@ -13,9 +13,10 @@ data class TutorialSteps (
@Expose @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @get: NonNull var tutorialStepId: Long = 0,
@Expose @get: NotBlank var tutorialText: String = "",
@Expose @get: NotBlank var step: Int = 0,
@Expose var errorText: String? = null,
@Expose var direction: String? = null,
@Expose var checkText: String? = null,
@Expose var condition: String? = null,
@Expose var branch: String? = null,
@Expose @get: NotBlank var parent_id: Int = 0,
@Expose var action: Int? = 0,
) {