isolaatti-android/app/src/main/java/com/isolaatti/common/OnUserInteractedCallback.kt

7 lines
160 B
Kotlin
Raw Normal View History

2023-09-12 22:31:52 -06:00
package com.isolaatti.common
2023-07-08 02:17:19 -06:00
interface OnUserInteractedCallback {
2023-08-27 20:00:43 -06:00
fun onOptions(postId: Ownable)
2023-07-08 02:17:19 -06:00
fun onProfileClick(userId: Int)
2023-08-15 00:02:29 -06:00
fun onLoadMore()
2023-07-08 02:17:19 -06:00
}