domain-watchdog/src/Message/SendDomainEventNotif.php

14 lines
232 B
PHP
Raw Normal View History

<?php
namespace App\Message;
2024-08-26 23:45:30 +02:00
final class SendDomainEventNotif
{
public function __construct(
2025-10-25 17:26:56 +02:00
public string $watchlistToken,
2024-08-02 23:24:52 +02:00
public string $ldhName,
public \DateTimeImmutable $updatedAt,
2024-08-02 23:24:52 +02:00
) {
}
}