mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 12:34:18 +00:00
31 lines
554 B
PHP
31 lines
554 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\PackingLists\DataTransferObjects;
|
|
|
|
use App\Classes\General\Interfaces\DataTransferObject;
|
|
|
|
class PackingListObject implements DataTransferObject
|
|
{
|
|
|
|
private $reference;
|
|
|
|
private $status;
|
|
|
|
public function __construct(?string $reference, int $status)
|
|
{
|
|
$this->reference = $reference;
|
|
$this->status = $status;
|
|
}
|
|
|
|
public function getReference(): ?string
|
|
{
|
|
return $this->reference;
|
|
}
|
|
|
|
public function getStatus(): int
|
|
{
|
|
return $this->status;
|
|
}
|
|
|
|
}
|