aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgCacheWrap.java
blob: e8668b5e652063c07dc612334626fe8db595a331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cgeo.geocaching;

import java.util.ArrayList;
import java.util.List;

/**
 * List of caches
 */
public class cgCacheWrap {
    public String error = null;
    public String url = "";
    public String[] viewstates = null;
    public int totalCnt = 0;
    public List<cgCache> cacheList = new ArrayList<cgCache>();
}