Move stuff in base
This commit is contained in:
12
src/jvmMain/kotlin/nl/astraeus/vst/base/db/PatchEntity.kt
Normal file
12
src/jvmMain/kotlin/nl/astraeus/vst/base/db/PatchEntity.kt
Normal file
@@ -0,0 +1,12 @@
|
||||
package nl.astraeus.vst.base.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
|
||||
Reference in New Issue
Block a user