Teren-app/app/Events/ChangeContractSegment.php
2025-10-22 23:20:04 +02:00

18 lines
314 B
PHP

<?php
namespace App\Events;
use App\Models\Contract;
use Illuminate\Foundation\Events\Dispatchable;
class ChangeContractSegment
{
use Dispatchable;
public function __construct(
public Contract $contract,
public int $segmentId,
public bool $deactivatePrevious = true,
) {}
}