Files
dc-project/src/main/kotlin/fr/dcproject/entity/Follow.kt
2019-10-10 22:50:24 +02:00

10 lines
229 B
Kotlin

package fr.dcproject.entity
import fr.postgresjson.entity.UuidEntity
import java.util.*
class Follow <T : UuidEntity> (
id: UUID = UUID.randomUUID(),
createdBy: Citizen,
target: T
) : Extra<T>(id, createdBy, target)