Part-DB-server/src/Services/InfoProviderSystem/DTOs/BulkSearchRequestDTO.php

14 lines
299 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace App\Services\InfoProviderSystem\DTOs;
class BulkSearchRequestDTO
{
public function __construct(
public readonly array $fieldMappings,
public readonly bool $prefetchDetails = false,
public readonly array $partIds = []
) {}
}