Files
fotospiel-app/app/Events/Packages/EventPackagePhotoThresholdReached.php
2025-11-01 13:19:07 +01:00

21 lines
419 B
PHP

<?php
namespace App\Events\Packages;
use App\Models\EventPackage;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class EventPackagePhotoThresholdReached
{
use Dispatchable;
use SerializesModels;
public function __construct(
public EventPackage $eventPackage,
public float $threshold,
public int $limit,
public int $used,
) {}
}