add properties to freight order
This commit is contained in:
parent
6ad041a945
commit
423439e897
3 changed files with 85 additions and 4 deletions
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
namespace FreightQuote\FreightOrder\UseCases;
|
||||
|
||||
use DateTime;
|
||||
|
||||
class CreateFreightOrderRequestDTO
|
||||
{
|
||||
public function __construct(
|
||||
public string $shipFrom,
|
||||
public string $shipTo,
|
||||
public DateTime $pickupDate,
|
||||
public DateTime $deliveryDeadline,
|
||||
public string $loadDetails,
|
||||
public string $notes,
|
||||
public array $fileAttachments,
|
||||
) {}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue