add set persistence
This commit is contained in:
parent
4ac01460fd
commit
5b9df7d02a
7 changed files with 167 additions and 0 deletions
13
backend/app/Set/CreateSetDto.php
Normal file
13
backend/app/Set/CreateSetDto.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace App\Set;
|
||||
|
||||
use App\User\User;
|
||||
|
||||
final readonly class CreateSetDto
|
||||
{
|
||||
public function __construct(
|
||||
public string $name,
|
||||
public User $creator,
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue