mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-22 22:13:59 +00:00
Laravel Vapor - Code sync with Shipping Portal, Version 2 of Commands
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user