dbmsv3/app/Interfaces/Equipment/ServerPartInterface.php
2025-10-22 17:53:07 +09:00

12 lines
303 B
PHP

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