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

12 lines
281 B
PHP

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