import APIClient
import Foundation

public enum CommentsClientEvent {
    case didUpdateComments(ClipCommentsThreadMap)
    case didReportComment(ClipComment)
    case didResolveTemporaryComment(String)

    case didUpdateSuggestedUserMentions([SimpleProfile])

    case didReceiveAPIToastingError(String)
    case didReceiveAPIModalError(String)
}
