import { LatLong } from '../tracking/lat-long';
import { AddressBase } from './address-base';

/** @description The basic address type related to service points */
export class ServicePointAddress extends AddressBase {
  /** @description Geographical location */
  geo?: LatLong;
}
