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

12 lines
277 B
PHP

<?php
namespace App\Interfaces\Part;
use App\Entities\Equipment\ServerPartEntity;
interface PartInterface
{
public function attachToServerPart(ServerPartEntity $serverPartEntity): mixed;
public function detachFromServerPart(ServerPartEntity $serverPartEntity): mixed;
}