New-Thanasoft/thanasoft-back/app/Repositories/ClientRepositoryInterface.php

11 lines
190 B
PHP

<?php
declare(strict_types=1);
namespace App\Repositories;
interface ClientRepositoryInterface extends BaseRepositoryInterface
{
// Add Client-specific methods here later if needed
}