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


public class cgList {
    public static final int STANDARD_LIST_ID = 1;

    public int id = 0;
    public String title = null;
    public Long updated = null;

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