2022-01-04 17:31:57 +00:00
|
|
|
<?php
|
|
|
|
|
2025-01-29 16:40:11 +00:00
|
|
|
namespace BookStack\Sorting;
|
2022-01-04 17:31:57 +00:00
|
|
|
|
|
|
|
class BookSortMapItem
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public $id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public $sort;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ?int
|
|
|
|
*/
|
|
|
|
public $parentChapterId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $type;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public $parentBookId;
|
|
|
|
|
|
|
|
public function __construct(int $id, int $sort, ?int $parentChapterId, string $type, int $parentBookId)
|
|
|
|
{
|
|
|
|
$this->id = $id;
|
|
|
|
$this->sort = $sort;
|
|
|
|
$this->parentChapterId = $parentChapterId;
|
|
|
|
$this->type = $type;
|
|
|
|
$this->parentBookId = $parentBookId;
|
|
|
|
}
|
2022-01-06 12:18:11 +00:00
|
|
|
}
|