dbmsv2/app/Interfaces/Equipment/ServerPartInterface.php
2025-09-18 17:17:11 +09:00

11 lines
256 B
PHP

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