Files
event-demo/src/main/kotlin/eventDemo/libs/eventSource/projection/Projection.kt
T

9 lines
187 B
Kotlin

package eventDemo.libs.eventSource.projection
import eventDemo.libs.eventSource.AggregateId
interface Projection<ID : AggregateId> {
val aggregateId: ID
val lastEventVersion: Int
}