add device registry Identity

This commit is contained in:
2024-11-26 10:07:15 +01:00
parent 9f3b80ec31
commit 3206412565

View File

@@ -0,0 +1,12 @@
package ltd.hlaeja.library.deviceRegistry
import java.util.UUID
object Identity {
data class Response(
val client: UUID,
val node: UUID,
val device: UUID,
)
}