12 lines
213 B
PHP
12 lines
213 B
PHP
<?php
|
|
|
|
namespace App\Comment\UseCases\CreateComment;
|
|
|
|
class CreateCommentRequest
|
|
{
|
|
public function __construct(
|
|
public int $postId,
|
|
public int $userId,
|
|
public ?string $body,
|
|
) {}
|
|
}
|