Files
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

34 lines
552 B
PHP
Executable File

<?php
namespace Common\Files\Events;
class FileEntriesMoved
{
/**
* @var array
*/
public $entryIds;
/**
* @var null|integer
*/
public $destination;
/**
* @var int|null
*/
public $source;
/**
* @param array $entryIds
* @param null|int $destination
* @param null|int $source
*/
public function __construct($entryIds, $destination, $source)
{
$this->entryIds = $entryIds;
$this->destination = $destination;
$this->source = $source;
}
}