dbmsv3/app/Interfaces/Equipment/ServerPartInterface.php
2025-10-03 16:41:30 +09:00

11 lines
278 B
PHP

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