A prototype

This commit is contained in:
2025-12-25 13:22:26 +01:00
commit 2f4820028f
59 changed files with 2344 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package net.tinsae.clocked.data
import java.time.Duration
import java.time.Instant
data class Log(
val id: Int,
val duration: Duration,
val reason: String?,
val type: EntryType,
val timestamp: Instant
)
enum class EntryType {
OVERTIME, TIME_OFF
}