/** @description Basic structure for a tracking service */
export class Service {
  /** @description The code specific to a shipping provider service. */
  code?: string;
  /** @description The name of this shipping provider service. */
  name?: string;
}
