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

import cgeo.geocaching.geopoint.Geopoint;

public class cgList {
    public boolean def = false;
    public int id = 0;
    public String title = null;
    public Long updated = null;
    public Geopoint coords = null;

    public cgList(boolean defIn) {
        def = defIn;
    }

    public cgList(boolean defIn, int idIn, String titleIn) {
        def = defIn;
        id = idIn;
        title = titleIn;
    }
}