package DTO;
/**
* Encapsulates the latitude and longitude values for a specific location.
*
* @author Alex Jarvis axj7@aber.ac.uk
*/
public class CoordinateDTO {
/**
* The latitude value of this Coordinate
*/
public Double latitude;
/**
* The longitude value of this Coordinate
*/
public Double longitude;
}