mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
16 lines
328 B
PHP
16 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)
|
|
{
|
|
}
|
|
}
|