add set deletion

This commit is contained in:
Yisroel Baum 2026-07-02 17:13:11 +03:00
parent ae48bdf93b
commit fb88bbfaa9
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
4 changed files with 147 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace App\Set\UseCases\DeleteSet;
class DeleteSetRequest
{
public function __construct(public ?int $id)
{
}
}