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