blob: b1ccb1234a717d41377fbdf053b49af1bebd5cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cgeo.geocaching;
import cgeo.geocaching.enumerations.StatusCode;
import java.util.ArrayList;
import java.util.List;
/**
* List of caches
*/
public class cgCacheWrap {
public StatusCode error = null;
public String url = "";
public String[] viewstates = null;
public int totalCnt = 0;
public List<cgCache> cacheList = new ArrayList<cgCache>();
}
|