11 lines
196 B
PHP
11 lines
196 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Koneko\VuexyAdmin\Application\Events\Settings;
|
|
|
|
class VuexyCustomizerSettingsUpdated
|
|
{
|
|
public function __construct(public array $settings = []) {}
|
|
}
|