Implement snip hiding

This commit is contained in:
Tim
2025-04-25 22:17:27 +02:00
parent 5a940b9ebd
commit 7c4a2b46c0
13 changed files with 541 additions and 24 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace App\Dto;
readonly class SnipFilterRequest
{
public function __construct(
public bool $onlyVisible = true,
) {}
public function toArray(): array
{
return [
'onlyVisible' => $this->onlyVisible,
];
}
}