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

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

import android.support.annotation.Nullable;

interface HotelsFilterHolder
{
  @Nullable
  HotelsFilter getHotelsFilter();
  @Nullable
  BookingFilterParams getFilterParams();
}