Remove sub directories
This commit is contained in:
13
src/main/kotlin/entity/ViewAggregation.kt
Normal file
13
src/main/kotlin/entity/ViewAggregation.kt
Normal file
@@ -0,0 +1,13 @@
|
||||
package fr.dcproject.entity
|
||||
|
||||
import fr.postgresjson.entity.EntityI
|
||||
import fr.postgresjson.entity.immutable.EntityUpdatedAt
|
||||
import fr.postgresjson.entity.immutable.EntityUpdatedAtImp
|
||||
|
||||
open class ViewAggregation(
|
||||
val total: Int,
|
||||
val unique: Int
|
||||
) : EntityI,
|
||||
EntityUpdatedAt by EntityUpdatedAtImp() {
|
||||
constructor() : this(0, 0)
|
||||
}
|
||||
Reference in New Issue
Block a user