0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-05 21:35:24 +00:00
BookStackApp_BookStack/app/Sorting/BookSortMapItem.php

40 lines
638 B
PHP

<?php
namespace BookStack\Sorting;
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;
}
}