implement SetFeaturedPost use case
This commit is contained in:
parent
13ca655f9b
commit
ee95bcafc9
2 changed files with 81 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
namespace App\Post\UseCases\SetFeaturedPost;
|
||||
|
||||
class SetFeaturedPostRequest
|
||||
{
|
||||
public function __construct(
|
||||
public int $postId,
|
||||
public int $slot,
|
||||
public bool $requesterIsAdmin,
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue