add Nodes

This commit is contained in:
2025-08-18 11:17:14 +02:00
committed by swordsteel
parent 01b23a1dfb
commit f31cf2d860
2 changed files with 16 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official kotlin.code.style=official
version=0.10.0-SNAPSHOT version=0.10.0-SNAPSHOT
catalog=0.11.0 catalog=0.12.0-SNAPSHOT

View File

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