aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgCacheWrap.java
blob: ccf6fa7d026f8db0437cb57f5345c6e69ea84412 (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>();
}