25 lines
399 B
PHP
Raw Normal View History

2020-06-02 18:05:09 -05:00
<?php declare(strict_types=1);
class BulkExportEvent extends Event
{
public $image;
public $fields = [];
public function __construct(Image $image)
{
$this->image = $image;
}
}
class BulkImportEvent extends Event
{
public $image;
public function __construct(Image $image, $fields)
{
$this->image = $image;
$this->fields = $fields;
}
}