dbmsv3/app/Interfaces/Equipment/ServerPartInterface.php
2025-10-01 17:11:20 +09:00

11 lines
306 B
PHP

<?php
namespace App\Interfaces\Equipment;
use App\Entities\Equipment\ServerPartEntity;
interface ServerPartInterface extends EquipmentInterface
{
public function setServerPart(string $action, ServerPartEntity $oldServerPartEntity, ServerPartEntity $serverPartEntity, array $serverPartDatas): mixed;
}