12 lines
291 B
Kotlin
12 lines
291 B
Kotlin
package nl.astraeus.vst.chip.db
|
|
|
|
import kotlinx.datetime.Clock
|
|
import kotlinx.datetime.Instant
|
|
|
|
data class PatchEntity(
|
|
override var id: Long,
|
|
var patchId: String,
|
|
var patch: String,
|
|
var created: Instant = Clock.System.now(),
|
|
var updated: Instant = Clock.System.now(),
|
|
) : EntityId |