You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
484 B
19 lines
484 B
<?php
|
|
|
|
namespace App\Domains\System\Events;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ExportCompleted implements ShouldQueue
|
|
{
|
|
use Dispatchable, Queueable, SerializesModels;
|
|
|
|
public function __construct(
|
|
public readonly string $recipientEmail,
|
|
public readonly string $filePath,
|
|
public readonly string $downloadName
|
|
) {}
|
|
}
|
|
|