Rabbi_Gerzi/backend/app/Element/UseCases/UpdateElement/UpdatePdfRequest.php

15 lines
303 B
PHP

<?php
namespace App\Element\UseCases\UpdateElement;
class UpdatePdfRequest
{
public function __construct(
public ?int $id,
public ?string $pdfContents,
public ?string $pdfOriginalName,
public ?string $pdfMimeType,
public ?int $pdfSizeBytes,
) {
}
}