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

commonMain.com.saveourtool.save.domain.UserSaveStatus.kt Maven / Gradle / Ivy

The newest version!
package com.saveourtool.save.domain

import kotlinx.serialization.Serializable

/**
 * Enum of user save status
 * @property message
 */
@Serializable
enum class UserSaveStatus(val message: String) {
    /**
     * User has conflicting name
     */
    CONFLICT("This name is already taken"),

    /**
     * New user
     */
    NEW("User saved successfully"),

    /**
     * Update user
     */
    UPDATE("User successfully updated"),
    ;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy