Skip to content
Snippets Groups Projects

Resolve "As a user, I would like a town specific page which shows all trails for that town so that I can easily see my progress"

Compare and
9 files
+ 236
1
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -3,8 +3,11 @@ package Team5.SmartTowns.Data;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Location {
// private int locationID;
private String locationName;
@@ -13,6 +16,8 @@ public class Location {
private String locationPlace;
private int locationTrailID;
@Override
public String toString() {
return "Location{" +
Loading