Akaunting/app/Events/Widget/ClassesCreated.php

21 lines
280 B
PHP
Raw Normal View History

2024-08-27 21:40:01 +00:00
<?php
namespace App\Events\Widget;
use App\Abstracts\Event;
class ClassesCreated extends Event
{
public $list;
/**
* Create a new event instance.
*
* @param $list
*/
public function __construct($list)
{
$this->list = $list;
}
}