mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-07-24 05:34:36 +03:00
18 lines
290 B
PHP
18 lines
290 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace BookStack\Search\Queries;
|
||
|
|
|
||
|
|
use BookStack\Entities\Models\Entity;
|
||
|
|
|
||
|
|
readonly class VectorSearchResult
|
||
|
|
{
|
||
|
|
public function __construct(
|
||
|
|
public Entity $entity,
|
||
|
|
public float $distance,
|
||
|
|
public string $matchText
|
||
|
|
) {
|
||
|
|
}
|
||
|
|
}
|