Big changes added events for decisions
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services\DecisionEvents;
|
||||
|
||||
use App\Models\Activity;
|
||||
use App\Models\Client;
|
||||
use App\Models\ClientCase;
|
||||
use App\Models\Contract;
|
||||
use App\Models\Decision;
|
||||
use App\Models\User;
|
||||
|
||||
class DecisionEventContext
|
||||
{
|
||||
public function __construct(
|
||||
public Activity $activity,
|
||||
public ?Decision $decision,
|
||||
public ?Contract $contract,
|
||||
public ?ClientCase $clientCase,
|
||||
public ?Client $client,
|
||||
public ?User $user,
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user