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

13 lines
370 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
import com.isolaatti.audio.common.domain.Audio
2023-07-08 02:17:19 -06:00
interface OnUserInteractedWithPostCallback : OnUserInteractedCallback {
fun onLiked(postId: Long)
fun onUnLiked(postId: Long)
fun onComment(postId: Long)
fun onOpenPost(postId: Long)
fun onPlay(audio: Audio)
fun onMoreInfo(postId: Long)
fun onShare(postId: Long)
2023-07-08 02:17:19 -06:00
}