commonMain.com.saveourtool.save.entities.ProjectStatus.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.entities
import kotlinx.serialization.Serializable
/**
* Enum of project status
*
* The order of the elements is used for sorting
*/
@Serializable
@Suppress("WRONG_DECLARATIONS_ORDER")
enum class ProjectStatus {
/**
* Project created
*/
CREATED,
/**
* Project deleted
*/
DELETED,
/**
* Project deleted
*/
BANNED,
;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy