mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-13 22:56:12 +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,
|
|
) {
|
|
}
|
|
}
|