add device registry Node

This commit is contained in:
2024-11-18 07:13:49 +01:00
parent 04ce5522cd
commit 9f3b80ec31

View File

@@ -0,0 +1,19 @@
package ltd.hlaeja.library.deviceRegistry
import java.util.UUID
object Node {
data class Request(
val client: UUID,
val device: UUID,
val name: String,
)
data class Response(
val id: UUID,
val client: UUID,
val device: UUID,
val name: String,
)
}