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

13 lines
308 B
PHP

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