mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
15 lines
204 B
PHP
15 lines
204 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* Navigation class.
|
|
*/
|
|
class Navigation
|
|
{
|
|
public $orderby = array();
|
|
public $list_count;
|
|
public $page_count;
|
|
public $page;
|
|
public $offset;
|
|
}
|