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

21 lines
423 B
PHP

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