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: 4923c7c71e6d8564a74dc985b15ea56e1ebbc12f (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.mapswithme.maps.search;

import androidx.annotation.Nullable;

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