diff options
Diffstat (limited to 'src/cgeo/geocaching/cgList.java')
| -rw-r--r-- | src/cgeo/geocaching/cgList.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/cgList.java b/src/cgeo/geocaching/cgList.java new file mode 100644 index 0000000..65d08ac --- /dev/null +++ b/src/cgeo/geocaching/cgList.java @@ -0,0 +1,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; + } +} |
