13 lines
298 B
PHP
13 lines
298 B
PHP
<?php
|
|
|
|
namespace App\Domains\Unterschrift\Actions\RenderPreview;
|
|
|
|
class RenderPreviewResponse
|
|
{
|
|
public function __construct(
|
|
/** @var array<int, array{dataUri: string, width: int, height: int}> */
|
|
public readonly array $pages,
|
|
public readonly int $pageCount,
|
|
) {}
|
|
}
|