import { RelayPointAddress } from './relay-point-address';

/** @description Details of the relay points to be used to create labels */
export class RelayPointDetails {
  ship_to!: RelayPointAddress;
  ship_from!: RelayPointAddress;
}
