mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
15 lines
242 B
PHP
15 lines
242 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Interaction;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class SongLikeToggled extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
public function __construct(public Interaction $interaction)
|
|
{
|
|
}
|
|
}
|