aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/cgList.java
blob: 65d08acd48498e5b3bbf62f961fb34100b25613e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cgeo.geocaching;

public class cgList {
	public boolean def = false;
	public int id = 0;
	public String title = null;
	public Long updated = null;
	public Double latitude = null;
	public Double longitude = null;
	
	public cgList(boolean defIn) {
		def = defIn;
	}
	
	public cgList(boolean defIn, int idIn, String titleIn) {
		def = defIn;
		id = idIn;
		title = titleIn;
	}
}