add set edits
This commit is contained in:
parent
f8e1ef1397
commit
53d4120e83
8 changed files with 245 additions and 0 deletions
17
backend/app/Set/UseCases/UpdateSet/UpdateSetRequest.php
Normal file
17
backend/app/Set/UseCases/UpdateSet/UpdateSetRequest.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
namespace App\Set\UseCases\UpdateSet;
|
||||
|
||||
class UpdateSetRequest
|
||||
{
|
||||
public function __construct(
|
||||
public ?int $id,
|
||||
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