Rabbi_Gerzi/backend/app/Element/UseCases/UpdateElement/UpdateShortPdfPathRequest.php
Yisroel Baum 9bbabc7fa6
route element file uploads
Add short and long PDF paths to elements, keep pdfPath as a short PDF compatibility alias, and route generic file uploads by fileType.
2026-06-14 23:17:56 +03:00

12 lines
200 B
PHP

<?php
namespace App\Element\UseCases\UpdateElement;
class UpdateShortPdfPathRequest
{
public function __construct(
public ?int $id,
public ?string $shortPdfPath,
) {
}
}