15 lines
305 B
PHP
15 lines
305 B
PHP
<?php
|
|
|
|
namespace App\Set\UseCases\UpdateSet;
|
|
|
|
class UpdateIconImageRequest
|
|
{
|
|
public function __construct(
|
|
public ?int $id,
|
|
public ?string $fileContents,
|
|
public ?string $fileOriginalName,
|
|
public ?string $fileMimeType,
|
|
public ?int $fileSizeBytes,
|
|
) {
|
|
}
|
|
}
|