feat: create ClickUp task after confirming accommodation booking

This commit is contained in:
Björn Fromme
2026-08-20 17:56:29 +02:00
parent 0a1683667f
commit 7c5f6dd5ef
18 changed files with 535 additions and 48 deletions
@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace App\Message;
final class CreateClickUpBookingTaskMessage
{
public function __construct(
public readonly int $bookingId,
) {
}
}