dbmsv3/app/Interfaces/Part/SWITCHInterface.php
2025-10-28 11:36:56 +09:00

13 lines
324 B
PHP

<?php
namespace App\Interfaces\Part;
use App\Entities\Equipment\ServerEntity;
use App\Entities\Part\SWITCHEntity;
interface SWITCHInterface
{
public function attachToServer(ServerEntity $serverEntity, array $formDatas = []): SWITCHEntity;
public function detachFromServer(ServerEntity $serverEntity): SWITCHEntity;
}