All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lsd.core.domain.Scenario.kt Maven / Gradle / Ivy

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