7 lines
160 B
Kotlin
7 lines
160 B
Kotlin
package com.isolaatti.common
|
|
|
|
interface OnUserInteractedCallback {
|
|
fun onOptions(postId: Ownable)
|
|
fun onProfileClick(userId: Int)
|
|
fun onLoadMore()
|
|
} |