mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
14 lines
230 B
PHP
14 lines
230 B
PHP
<?php
|
|
|
|
namespace App\Message;
|
|
|
|
final class DetectDomainChange
|
|
{
|
|
public function __construct(
|
|
public string $watchlistToken,
|
|
public string $ldhName,
|
|
public \DateTimeImmutable $updatedAt,
|
|
) {
|
|
}
|
|
}
|