dbmsv3/app/Interfaces/Part/SWITCHInterface.php
2025-10-27 17:15:47 +09:00

12 lines
272 B
PHP

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