mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-12 21:43:48 +08:00
14 lines
229 B
PHP
14 lines
229 B
PHP
<?php
|
|
|
|
namespace BookStack\Entities\Queries;
|
|
|
|
class EntityQueries
|
|
{
|
|
public function __construct(
|
|
public BookshelfQueries $shelves,
|
|
public BookQueries $books,
|
|
public PageQueries $pages,
|
|
) {
|
|
}
|
|
}
|