mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
17 lines
328 B
PHP
17 lines
328 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
use App\Models\PlaylistCollaborationToken;
|
||
|
use App\Models\User;
|
||
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
||
|
class NewPlaylistCollaboratorJoined extends Event
|
||
|
{
|
||
|
use SerializesModels;
|
||
|
|
||
|
public function __construct(public User $collaborator, public PlaylistCollaborationToken $token)
|
||
|
{
|
||
|
}
|
||
|
}
|