create set endpoint
This commit is contained in:
parent
50df56a0cb
commit
18073f147f
4 changed files with 228 additions and 1 deletions
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace App\Set\UseCases\CreateSetWithRoot;
|
||||
|
||||
class CreateSetWithRootRequest
|
||||
{
|
||||
public function __construct(
|
||||
public ?string $name,
|
||||
public ?string $description,
|
||||
public ?string $iconImageContents,
|
||||
public ?string $iconImageOriginalName,
|
||||
public ?string $iconImageMimeType,
|
||||
public ?int $iconImageSizeBytes,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue