AspireCloud/app/Events/AssetCreated.php

13 lines
217 B
PHP

<?php
namespace App\Events;
use App\Models\WpOrg\Asset;
use Illuminate\Foundation\Events\Dispatchable;
readonly class AssetCreated
{
use Dispatchable;
public function __construct(public Asset $asset) {}
}