/** @description Latitude and longitude */
export class LatLong {
  /** @description The latitude of the point. Represented as signed degrees. http://www.geomidpoint.com/latlon.html */
  lat!: number;
  /** @description The longitude of the point. Represented as signed degrees http://www.geomidpoint.com/latlon.html */
  long!: number;
}
