<?php

namespace IQDEV\Search\Query;

use IQDEV\Search\Result;

final class SearchQueryResponse
{
    public Result $result;

    public function __construct(Result $result)
    {
        $this->result = $result;
    }
}