mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2026-02-04 08:29:35 +00:00
14 lines
299 B
PHP
14 lines
299 B
PHP
|
|
<?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 = []
|
||
|
|
) {}
|
||
|
|
}
|