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
|
|
|
}
|