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

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

import androidx.annotation.NonNull;

public final class KeyValue
{
  public KeyValue(@NonNull String key, @NonNull String value)
  {
    mKey = key;
    mValue = value;
  }

  @NonNull
  public final String mKey;
  @NonNull
  public final String mValue;
}