mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-13 22:43:39 +08:00
14 lines
205 B
PHP
14 lines
205 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Exports;
|
||
|
|
||
|
class ZipResultData
|
||
|
{
|
||
|
public function __construct(
|
||
|
public string $zipPath,
|
||
|
public string $extractedDirPath,
|
||
|
public array $data,
|
||
|
) {
|
||
|
}
|
||
|
}
|