2023-09-12 22:31:52 -06:00
|
|
|
package com.isolaatti.common
|
2023-07-08 02:17:19 -06:00
|
|
|
|
2024-03-03 20:25:49 -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)
|
2023-07-28 21:36:38 -06:00
|
|
|
fun onOpenPost(postId: Long)
|
2024-03-03 20:25:49 -06:00
|
|
|
fun onPlay(audio: Audio)
|
2023-07-08 02:17:19 -06:00
|
|
|
}
|