sample-service-consumer/src/main/kotlin/api/ApiObject.kt

11 lines
203 B
Kotlin
Raw Normal View History

2021-08-13 14:19:40 +02:00
package api
2021-08-18 14:01:16 +02:00
import kotlinx.datetime.LocalDate
import kotlinx.serialization.Serializable
2021-08-13 14:19:40 +02:00
2021-08-18 14:01:16 +02:00
@Serializable
2021-08-13 14:19:40 +02:00
data class ApiObject(
2021-08-18 14:01:16 +02:00
val tag: String,
val device_id: Int,
val device_date: LocalDate
2021-08-13 14:19:40 +02:00
)