Create basic structure of XML query

This commit is contained in:
Kijin Sung 2020-06-22 16:53:44 +09:00
parent c97b161e42
commit 20025077f7
11 changed files with 303 additions and 8 deletions

View file

@ -0,0 +1,15 @@
<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* Navigation class.
*/
class Navigation
{
public $orderby = array();
public $list_count;
public $page_count;
public $page;
public $offset;
}