Add short and long PDF paths to elements, keep pdfPath as a short PDF compatibility alias, and route generic file uploads by fileType.
15 lines
313 B
PHP
15 lines
313 B
PHP
<?php
|
|
|
|
namespace App\Element\UseCases\UpdateElement;
|
|
|
|
class UpdateIconImageRequest
|
|
{
|
|
public function __construct(
|
|
public ?int $id,
|
|
public ?string $fileContents,
|
|
public ?string $fileOriginalName,
|
|
public ?string $fileMimeType,
|
|
public ?int $fileSizeBytes,
|
|
) {
|
|
}
|
|
}
|