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

PaymentDataParser.java « bookmarks « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e8ec4925630e9ff6dd78d684656e5db49d74f45 (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;

interface PaymentDataParser
{
  @NonNull
  PaymentData parse(@NonNull String url);
}