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

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

import androidx.annotation.NonNull;

interface FormatPriceStrategy
{
  @NonNull
  String format(@NonNull TaxiInfo.Product product);
}