diff options
Diffstat (limited to 'main/src/cgeo/geocaching/cgUser.java')
| -rw-r--r-- | main/src/cgeo/geocaching/cgUser.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/cgUser.java b/main/src/cgeo/geocaching/cgUser.java new file mode 100644 index 0000000..2249133 --- /dev/null +++ b/main/src/cgeo/geocaching/cgUser.java @@ -0,0 +1,13 @@ +package cgeo.geocaching; + +import cgeo.geocaching.geopoint.Geopoint; + +import java.util.Date; + +public class cgUser { + public Date located = null; + public String username = null; + public Geopoint coords = null; + public String action = null; + public String client = null; +} |
