Akaunting/app/Events/Setting/CurrencyDeleting.php

21 lines
303 B
PHP

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