Attainly/backend/app/Set/SetRepository.php
2026-08-03 22:20:41 +03:00

13 lines
183 B
PHP

<?php
namespace App\Set;
interface SetRepository
{
public function create(CreateSetDto $dto): Set;
/**
* @return list<Set>
*/
public function all(): array;
}