SDPTeam15/PolyEvents

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

Summary

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

/**
 * Interface to notify that a profile has changed to refresh UI
 */
interface UserModifiedInterface {
    /**
     * Notify profile has changed
     */
    fun profileHasChanged()
}