commonMain.com.saveourtool.save.entities.contest.ContestSampleFieldDto.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.entities.contest
import kotlinx.serialization.Serializable
/**
* @property name name of field
* @property type type of field
*/
@Serializable
data class ContestSampleFieldDto(
val name: String,
val type: ContestSampleFieldType,
) {
companion object {
val empty = ContestSampleFieldDto(
"",
ContestSampleFieldType.NUMBER,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy