Files
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

29 lines
537 B
PHP
Executable File

<?php
namespace Common\Workspaces\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class WorkspaceDeleted
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* @var int
*/
public $workspaceId;
/**
* @var int
*/
public $ownerId;
public function __construct(int $workspaceId, int $ownerId)
{
$this->workspaceId = $workspaceId;
$this->ownerId = $ownerId;
}
}