mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 20:43:56 +00:00
27 lines
514 B
PHP
27 lines
514 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Jobs\DataTransferObjects;
|
|
|
|
use App\Classes\General\Interfaces\DataTransferObject;
|
|
|
|
class DeleteOrderV2CommandObject implements DataTransferObject
|
|
{
|
|
/** @var string */
|
|
private $bookingsReference;
|
|
|
|
|
|
public function __construct(string $bookingsReference)
|
|
{
|
|
$this->bookingsReference = $bookingsReference;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBookingsReference(): string
|
|
{
|
|
return $this->bookingsReference;
|
|
}
|
|
|
|
}
|