package com.ikea.shared.filter.model;

import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
import java.util.List;

public class PriceFilter
  implements Serializable
{
  private static final long serialVersionUID = 8227863500851131968L;

  @SerializedName("MaxPrice")
  private String mMaxPrice;

  @SerializedName("MinPrice")
  private String mMinPrice;

  @SerializedName("PriceRangeList")
  private List<PriceRangeList> mPriceRangeList;

  public String getMaxPrice()
  {
    return this.mMaxPrice;
  }

  public String getMinPrice()
  {
    return this.mMinPrice;
  }

  public List<PriceRangeList> getPriceRangeList()
  {
    return this.mPriceRangeList;
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.shared.filter.model.PriceFilter
 * JD-Core Version:    0.6.2
 */