TIDE/backend/app/Comment/UseCases/DeleteComment/DeleteCommentRequest.php

12 lines
230 B
PHP

<?php
namespace App\Comment\UseCases\DeleteComment;
class DeleteCommentRequest
{
public function __construct(
public int $commentId,
public int $requesterId,
public bool $requesterIsAdmin,
) {}
}