Pixelcat-App-Android/app/src/main/kotlin/at/connyduck/pixelcat/components/util/BindingHolder.kt

8 lines
233 B
Kotlin

package at.connyduck.pixelcat.components.util
import androidx.recyclerview.widget.RecyclerView
import androidx.viewbinding.ViewBinding
class BindingHolder<T: ViewBinding>(
val binding: T
): RecyclerView.ViewHolder(binding.root)