3 Commits

Author SHA1 Message Date
cb39c7cea0 [RELEASE] - release version: 0.3.0 2024-11-30 18:54:51 +01:00
f696e826fd add device configuration Configuration 2024-11-30 16:54:44 +01:00
f4ab9741f3 [RELEASE] - bump version 2024-11-26 11:01:20 +01:00
2 changed files with 19 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
kotlin.code.style=official kotlin.code.style=official
version=0.2.0 version=0.3.0
catalog=0.4.0 catalog=0.5.0

View File

@@ -0,0 +1,17 @@
package ltd.hlaeja.library.deviceConfiguration
import java.time.ZonedDateTime
import java.util.UUID
object Node {
data class Request(
val configuration: String,
)
data class Response(
val node: UUID,
val timestamp: ZonedDateTime,
val configuration: String,
)
}