You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
370 B
Kotlin
13 lines
370 B
Kotlin
package com.cyb3rko.techniklogger.recycler
|
|
|
|
import android.view.View
|
|
import android.widget.TextView
|
|
|
|
import com.cyb3rko.techniklogger.R
|
|
|
|
import me.ibrahimyilmaz.kiel.core.RecyclerViewHolder
|
|
|
|
class ProjectTechnikerViewHolder(view: View) : RecyclerViewHolder<ProjectTechnikerViewState.ProjectTechniker>(view) {
|
|
val textView: TextView = view.findViewById(R.id.title)
|
|
}
|