route set updates

This commit is contained in:
Yisroel Baum 2026-07-03 14:02:08 +03:00
parent b2e39a98e4
commit 7428612316
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
7 changed files with 252 additions and 89 deletions

View file

@ -0,0 +1,12 @@
<?php
namespace App\Set\UseCases\UpdateSet;
class UpdateDescriptionRequest
{
public function __construct(
public ?int $id,
public ?string $description,
) {
}
}