akaunting/app/Events/Banking/AccountDeleting.php
2023-08-23 11:51:34 +03:00

20 lines
315 B
PHP

<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class AccountDeleting extends Event
{
public $account;
/**
* Create a new event instance.
*
* @param $account
*/
public function __construct($account)
{
$this->account = $account;
}
}