mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
19 lines
399 B
PHP
19 lines
399 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Search\DTO;
|
|
|
|
final readonly class SearchCursor
|
|
{
|
|
/** @param list<int|float|string> $sortValues */
|
|
public function __construct(
|
|
public array $sortValues,
|
|
public int $total,
|
|
public string $queryHash,
|
|
public string $driver,
|
|
public string $indexGeneration,
|
|
public int $expiresAt,
|
|
) {}
|
|
}
|