crunchbutton/include/library/RESTful/SortExpression.php
2013-05-14 12:06:44 -07:00

16 lines
232 B
PHP
Executable File

<?php
namespace RESTful;
class SortExpression
{
public $name,
$ascending;
public function __construct($field, $ascending = true)
{
$this->field = $field;
$this->ascending = $ascending;
}
}