15 lines
263 B
PHP
15 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Comment;
|
|
|
|
use DateTimeImmutable;
|
|
|
|
readonly class CreateCommentDto
|
|
{
|
|
public function __construct(
|
|
public int $postId,
|
|
public int $userId,
|
|
public string $body,
|
|
public DateTimeImmutable $createdAt,
|
|
) {}
|
|
}
|