mirror of
https://github.com/koel/koel
synced 2024-12-29 22:13:06 +00:00
16 lines
295 B
PHP
16 lines
295 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Artist;
|
|
use App\Values\ArtistInformation;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ArtistInformationFetched
|
|
{
|
|
use SerializesModels;
|
|
|
|
public function __construct(public Artist $artist, public ArtistInformation $information)
|
|
{
|
|
}
|
|
}
|