Files
lucent-notifications/src/Events/ReadNotification.php
T

15 lines
268 B
PHP
Raw Normal View History

2024-12-19 04:19:57 +02:00
<?php
namespace LucentNotifications\Events;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ReadNotification{
use Dispatchable, SerializesModels;
function __construct(public string $notificationId)
{
}
}