Files
dc-project/src/main/kotlin/fr/dcproject/component/views/dto/ViewAggregation.kt

11 lines
245 B
Kotlin

package fr.dcproject.component.views.dto
import fr.dcproject.component.views.entity.ViewAggregation
class ViewAggregation(
val total: Int,
val unique: Int
) {
constructor(views: ViewAggregation) : this(views.total, views.unique)
}