Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AttachmentDeletedListener.java « attachments « card « ui « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c236fa4c5769ecdb99bc61eec57f5162b080c37d (plain)
1
2
3
4
5
6
7
package it.niedermann.nextcloud.deck.ui.card.attachments;

import it.niedermann.nextcloud.deck.model.Attachment;

public interface AttachmentDeletedListener {
        void onAttachmentDeleted(Attachment attachment);
    }