<?php

namespace IQDEV\ElasticSearch\Query;

use IQDEV\ElasticSearch\Result;

final class SearchQueryResponse
{
    public Result $result;

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