mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-27 21:11:12 +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;
|
|
} |