mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-10-08 00:40:25 +00:00
10 lines
199 B
Kotlin
10 lines
199 B
Kotlin
package dev.inmo.micro_utils.repos.ktor
|
|
|
|
import com.benasher44.uuid.uuid4
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class SimpleData(
|
|
val title: String = uuid4().toString()
|
|
)
|