iteo/src/Aggregate/AcceptOrderCommand.php
2024-04-14 20:17:21 +02:00

17 lines
264 B
PHP

<?php
namespace App\Aggregate;
use App\Contract\OrderDto;
use App\Entity\Client;
use Symfony\Component\Uid\Uuid;
readonly class AcceptOrderCommand
{
public function __construct(
public OrderDto $order,
public Client $client,
) {
}
}