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

commonMain.hu.simplexion.adaptive.email.model.EmailStatus.kt Maven / Gradle / Ivy

package hu.simplexion.adaptive.email.model

enum class EmailStatus(
    val isFinal: Boolean
) {
    Preparation(false),
    SendWait(false),
    Sent(true),
    RetryWait(false),
    Failed(true)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy