3 Commits

3 changed files with 18 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official
version=0.7.0
version=0.8.0
catalog=0.8.0

View File

@@ -1,15 +1,19 @@
package ltd.hlaeja.library.deviceRegistry
import java.time.ZonedDateTime
import java.util.UUID
object Type {
data class Request(
val name: String,
val description: String,
)
data class Response(
val id: UUID,
val timestamp: ZonedDateTime,
val name: String,
val description: String,
)
}

View File

@@ -0,0 +1,13 @@
package ltd.hlaeja.library.deviceRegistry
import java.time.ZonedDateTime
import java.util.UUID
object Types {
data class Response(
val id: UUID,
val name: String,
val timestamp: ZonedDateTime,
)
}