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

BookmarkDownloadCallback.java « bookmarks « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a57fb9f281b2ec21a5a2c99f7e606c0d15b89cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.mapswithme.maps.bookmarks;

import android.support.annotation.NonNull;

import com.mapswithme.maps.bookmarks.data.PaymentData;

public interface BookmarkDownloadCallback
{
  void onAuthorizationRequired();
  void onPaymentRequired(@NonNull PaymentData data);
}