SDPTeam15/PolyEvents

View on GitHub
app/src/main/java/com/github/sdpteam15/polyevents/model/callback/ReviewHasChanged.kt

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.github.sdpteam15.polyevents.model.callback

/**
 * Callback for eventActivity when a comment is posted by the current user of when he modifies his comment
 */
fun interface ReviewHasChanged {
    /**
     * Notify review has changed
     */
    fun onLeaveReview()
}