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

IResponseCallback.java « model « shared « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c329727f8f5d0905c80f4a006b2f812399cb124 (plain)
1
2
3
4
5
6
7
8
9
package it.niedermann.owncloud.notes.shared.model;

import androidx.annotation.NonNull;

public interface IResponseCallback {
    void onSuccess();

    void onError(@NonNull Throwable t);
}