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

import cgeo.geocaching.enumerations.LogTypeTrackable;

public final class TrackableLog {
    public TrackableLog(String trackCode, String name, int id, int ctl) {
        this.trackCode = trackCode;
        this.name = name;
        this.id = id;
        this.ctl = ctl;
    }

    public final int ctl;
    public final int id;
    public final String trackCode;
    public final String name;
    public LogTypeTrackable action = LogTypeTrackable.DO_NOTHING; // base.logTrackablesAction - no action
}