9 lines
187 B
Kotlin
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
|
|
}
|