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

NotificationChannelProvider.java « background « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20ed05e2fd979365c84f151b8e9551c466aa9802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mapswithme.maps.background;

import android.support.annotation.NonNull;

public interface NotificationChannelProvider
{
  @NonNull
  String getUGCChannel();

  void setUGCChannel();

  @NonNull
  String getDownloadingChannel();

  void setDownloadingChannel();
}