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

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

import android.support.annotation.NonNull;

public class LocalizedStreet
{
  public final String defaultName;
  public final String localizedName;

  public LocalizedStreet(@NonNull String defaultName, @NonNull String localizedName)
  {
    this.defaultName = defaultName;
    this.localizedName = localizedName;
  }
}