com.lsd.core.domain.Scenario.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lsd-core Show documentation
Show all versions of lsd-core Show documentation
A library used to generate living sequence diagrams
The newest version!
package com.lsd.core.domain
data class Scenario
@JvmOverloads constructor(
val title: String,
val events: MutableList = ArrayList(),
val facts: MutableList = ArrayList(),
val description: String = "",
val status: Status
)
enum class Status { ERROR, FAILURE, SUCCESS; }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy