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

EditStackListener.java « stack « 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: b4c731bfc02d6f5befdac5974980d2266c6b3260 (plain)
1
2
3
4
5
6
7
8
9
package it.niedermann.nextcloud.deck.ui.stack;

import android.content.DialogInterface;

public interface EditStackListener extends DialogInterface.OnDismissListener {
    void onCreateStack(long accountId, long boardId, String title);

    void onUpdateStack(long stackId, String title);
}