commonMain.com.saveourtool.save.domain.EntitySaveStatus.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.domain
import kotlinx.serialization.Serializable
/**
* A common enum of statuses for saving entity
*/
@Serializable
enum class EntitySaveStatus {
/**
* Conflict while saving entity
*/
CONFLICT,
/**
* Entity exists already
*/
EXIST,
/**
* New entity saved successfully
*/
NEW,
/**
* Updated entity
*/
UPDATED,
;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy