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


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

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

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