package com.ikea.shared.stores.model;

import com.google.gson.annotations.SerializedName;
import java.io.Serializable;

public class StoreLocation
  implements Serializable
{
  private static final long serialVersionUID = -3899045894068648177L;

  @SerializedName("Latitude")
  private String mLat = "";

  @SerializedName("Longitude")
  private String mLong = "";

  public String getLat()
  {
    return this.mLat;
  }

  public String getLong()
  {
    return this.mLong;
  }

  public void setLong(String paramString)
  {
    this.mLong = paramString;
  }

  public String toString()
  {
    return "StoreLocation [mLat=" + this.mLat + ", mLong=" + this.mLong + "]";
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.stores.model.StoreLocation
 * JD-Core Version:    0.6.2
 */