com.dailystudio.devbricksx.annotations.InMemoryRepository.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devbricksx-kotlin-annotations Show documentation
Show all versions of devbricksx-kotlin-annotations Show documentation
DevBricks eXetrems Kotlin Annotations
package com.dailystudio.devbricksx.annotations
import kotlin.reflect.KClass
@Retention(AnnotationRetention.SOURCE)
@Target(AnnotationTarget.CLASS)
annotation class InMemoryRepository(
val key: KClass<*>,
val pageSize: Int = 10)