Files
domain-watchdog/src/Message/SendDomainEventNotif.php
2024-08-26 23:45:30 +02:00

14 lines
231 B
PHP

<?php
namespace App\Message;
final class SendDomainEventNotif
{
public function __construct(
public string $watchListToken,
public string $ldhName,
public \DateTimeImmutable $updatedAt
) {
}
}