12 lines
200 B
PHP
12 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Element\UseCases\UpdateElement;
|
|
|
|
class UpdateIconImageUrlRequest
|
|
{
|
|
public function __construct(
|
|
public ?int $id,
|
|
public ?string $iconImageUrl,
|
|
) {
|
|
}
|
|
}
|