You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
492 B
26 lines
492 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Class LpOrderItem.
|
|
*/
|
|
class LpOrderItem
|
|
{
|
|
public $id = 0;
|
|
public $parent_item_id = 0;
|
|
public $previous_item_id = 0;
|
|
public $next_item_id = 0;
|
|
public $display_order = 0;
|
|
|
|
/**
|
|
* LpOrderItem constructor.
|
|
*
|
|
* @param int $id
|
|
* @param int $parentId
|
|
*/
|
|
public function __construct($id = 0, $parentId = 0)
|
|
{
|
|
$this->id = $id;
|
|
$this->parent_item_id = $parentId;
|
|
}
|
|
}
|
|
|