package com.ikea.shared.config.model;

import com.google.gson.annotations.SerializedName;
import com.ikea.shared.browse.model.BaseResponse;
import com.ikea.shared.util.Persistable;
import java.util.List;

public class Config extends BaseResponse
  implements Persistable
{

  @SerializedName("country")
  private List<Country> mCountries;
  private long mLastUpdatedTime;

  public List<Country> getCountry()
  {
    return this.mCountries;
  }

  public String getId()
  {
    return "APP_CONFIG";
  }

  public long getLastUpdatedTime()
  {
    return this.mLastUpdatedTime;
  }

  public void setCountry(List<Country> paramList)
  {
    this.mCountries = paramList;
  }

  public void setLastUpdatedTime(long paramLong)
  {
    this.mLastUpdatedTime = paramLong;
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.config.model.Config
 * JD-Core Version:    0.6.2
 */