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

11 lines
192 B
PHP

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