mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
13 lines
230 B
PHP
13 lines
230 B
PHP
<?php
|
|
|
|
namespace Xentral\Carrier\Dhl\Data;
|
|
|
|
class PackStation
|
|
{
|
|
public string $postNumber;
|
|
public string $packstationNumber;
|
|
public string $zip;
|
|
public string $city;
|
|
public ?string $province;
|
|
public ?Country $Origin;
|
|
} |