mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-25 00:01:28 +08:00
13 lines
174 B
PHP
13 lines
174 B
PHP
<?php
|
|
|
|
namespace BookStack\Search;
|
|
|
|
class SearchOption
|
|
{
|
|
public function __construct(
|
|
public string $value,
|
|
public bool $negated = false,
|
|
) {
|
|
}
|
|
}
|