mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-13 19:08:20 -05:00
Add initial Location for use in server communication
This commit is contained in:
parent
44edb4e848
commit
c41c2bf4b9
@ -1,5 +1,41 @@
|
||||
package edu.uncc.scavenger.rest;
|
||||
|
||||
public class Location {
|
||||
|
||||
|
||||
private int id;
|
||||
private String name;
|
||||
private String riddle;
|
||||
private double locationLong;
|
||||
private double locationLat;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
public String getRiddle() {
|
||||
return riddle;
|
||||
}
|
||||
public void setRiddle(String riddle) {
|
||||
this.riddle = riddle;
|
||||
}
|
||||
public double getLocationLong() {
|
||||
return locationLong;
|
||||
}
|
||||
public void setLocationLong(double locationLong) {
|
||||
this.locationLong = locationLong;
|
||||
}
|
||||
public double getLocationLat() {
|
||||
return locationLat;
|
||||
}
|
||||
public void setLocationLat(double locationLat) {
|
||||
this.locationLat = locationLat;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user