SearchFilters.php: add
This commit is contained in:
parent
13c553e214
commit
4514c3e9eb
1 changed files with 32 additions and 0 deletions
32
inc/Data/SearchFilters.php
Normal file
32
inc/Data/SearchFilters.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
namespace Vichan\Data;
|
||||
|
||||
|
||||
/**
|
||||
* POD with the fragments of each filter.
|
||||
*/
|
||||
class SearchFilters {
|
||||
/**
|
||||
* @var array<array<string>>
|
||||
*/
|
||||
public array $body;
|
||||
/**
|
||||
* @var array<string>
|
||||
*/
|
||||
public array $subject;
|
||||
/**
|
||||
* @var array<string>
|
||||
*/
|
||||
public array $name;
|
||||
/**
|
||||
* @var array<string>
|
||||
*/
|
||||
public array $board;
|
||||
/**
|
||||
* @var array<string>
|
||||
*/
|
||||
public array $flag;
|
||||
public ?int $id;
|
||||
public ?int $thread;
|
||||
public float $weight;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue